
*, *:before, *:after {
    box-sizing: border-box;
}

html {
    font-size: initial;
}

.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #6e707e;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #d1d3e2;
    border-radius: .35rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.AdminLogin-cover {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 49rem;
    background: #000;
    overflow: hidden;
}

.AdminLogin-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .6;
}

.AdminLogin-panel {
    display: flex;
    flex-direction: column;
    position: relative;
    float: right;
    width: 59rem;
    min-height: 100vh;
    padding: 4rem 5.8rem 2.25rem 13rem;
    background: #fff;
}

.LoginForm {
    color: #000;
    margin: auto 0;
}

.LoginForm-item-heading {
    text-align: center;
    color: #858585;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: .01em;
    margin-bottom: 38px;
}

.LoginForm-item {
    margin-bottom: 2.5rem;
    position: relative;
}

.LoginForm-item input {
    background-color: transparent;
    border: none;
    border-radius: 3px;
    box-shadow: 0 0 0 1px #9e9e9e;
    height: 56px;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    transition: all .25s ease-in-out;
}

.LoginForm-item input:focus {
    box-shadow: 0 0 0 2px #1e508d;
}

.LoginForm-item label {
    position: absolute;
    top: 50%;
    left: 10px;
    color: #949494;
    font-weight: 500;
    font-size: 16px;
    transform: translateY(-50%);
    pointer-events: none;
    background: transparent;
    display: inline-block;
    padding: 0 5px;
    transition: all .25s ease-in-out;
}

.LoginForm-item input:not(:placeholder-shown) ~ label {
    transform: translateY(-37px);
    font-size: 12px;
    color: #676767;
    letter-spacing: .04em;
    background: #fff;
}

.LoginForm-item button {
    border-radius: 4px;
    border: none;
    color: #fff;
    text-transform: uppercase;
    background: #1565c0;
    padding: 15px 46px 14px;
    font-weight: 500;
    display: table;
    margin: 0 auto;
    transition: all .25s ease-in-out;
}

.LoginForm-item button:hover {
    background: #2771c5;
}

.LoginForm-item a[href*="popam"] {
    position: absolute;
    top: 100%;
    background: #1e508d;
    padding: 1px 7px;
    color: #fff;
    border-radius: 3px;
    left: 50%;
    font-size: 12px;
    transform: translate(-50%,-50%);
}

.u-text-center {
    text-align: center;
}

.u-clear-both {
    clear: both;
}

.u-display-none {
    display: none;
}

@media (max-width: 767px) {
    .AdminLogin-panel {
        display: flex;
        flex-direction: column;
        position: relative;
        padding: 3em;
        float: none;
        width: 100%;
    }
}