/* Login */
.AUTHlogin-wrapper {
    width: 100vw;
    height: 100vh;
    background-color: #FFF;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 59;
    border-top: 5px solid #1A243E;
}

.AUTHside-info {
    width: 40%;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    height: 100%;
    background-color: #1A243E;
    overflow-x: hidden;
    padding-top: 20px;
}

.AUTHside-info .AUTHmain-text {
    margin-top: 25%;
    padding: 60px;
    color: #fff;
    font-size: 30px;
}

.AUTHside-info .AUTHlogo {
    height: 25px;
    display: block;
    padding-bottom: 3px;
}

.AUTHlogin-form, .AUTHregister-form {
    margin-left: 40%;
    max-width: 40%;
    padding: 0px 10px;
}

.AUTHregister-form {
    display: none;
}

.AUTHlogin-form .AUTHwrap, .AUTHregister-form .AUTHwrap {
    margin-top: 50%;
}

.AUTHlogin {
    margin-top: 20px;
}

.AUTHlogin.disabled {
    cursor: not-allowed;
    opacity: 0.2 !important;
}

.AUTHpassword-preview {
    position: absolute;
    right: -17px;
    cursor: pointer;
    top: 1px;
    color: #9fa3a7;
    padding: 8px;
}

.AUTHpassword-wrapper,  .AUTHcustomer_id-wrapper {
    width: 100%;
    max-width: 400px;
    position: relative;
}

.AUTHerror {
    color: #E34850;
    margin-bottom: 10px;
    display: inline-block;
    width: 90%;
}

.AUTHinfo-footer {
    bottom: 0;
    position: absolute;
    right: 0;
    padding: 10px 15px 10px 10px;
    font-size: 11px;
}

.AUTHswitch {
    display: inline-block;
    cursor: pointer;
}

.AUTHswitch.AUTHnotice {
    color: #1A243E;
}

.hover .AUTHswitch:hover {
    opacity: 0.6;
}

.touch .AUTHswitch.touched {
    animation: blink 0.6s;
}

.AUTHloader {
    width: 20px;
    height: 20px;
    background: url(/img/spinner.gif);
    background-size: 20px 20px;
    position: absolute;
    right: -10px;
    top: 6px;
    display: none;
}

/**** mobile ****/
@media only screen and (max-width: 950px) {
    .AUTHlogin-wrapper {
        overflow-y: scroll;
        overflow-x: hidden;
    }

    .AUTHside-info {
        height: 40vh;
        height: calc(var(--vh, 1vh) * 40);
        width: auto;
        position: relative;
        overflow: hidden;
    }

    .AUTHside-info .AUTHmain-text {
        margin-top: 0;
        margin-bottom: 3vh;
        bottom: 0;
        position: absolute;
    }

    .AUTHmain-content {
        position: relative;
        min-height: calc(60vh - 40px);
        min-height: calc((var(--vh, 1vh) * 60) - 40px);
    }

    .AUTHlogin-form, .AUTHregister-form {
        margin-left: 0;
        max-width: unset;
    }

    .AUTHlogin-form .AUTHwrap, .AUTHregister-form .AUTHwrap {
        margin-top: 20px;
    }

    .AUTHpassword-preview {
        right: 10px;
    }

    .AUTHloader {
        right: 16px;
    }

    .AUTHpassword-wrapper, .AUTHcustomer_id-wrapper {
        max-width: 100%;
    }
}