#AuthModal {
    max-width: 480px !important;
    padding: 0 !important;
}
#AuthModal .mfp-close {
    display: none;
}
#AuthModal .enter-form {
    width: 100%;
    max-width: 480px;
    margin: 0;
    padding: 49px;
    background: #FFFFFF;
    border: 1px solid #EBEBEB;
    box-shadow: 0px 4px 26px rgba(0, 0, 0, 0.06);
}

#AuthModal .enter-form .form-title {
    font-weight: 700;
    font-size: 24px;
    color: #042EB0;
    line-height: 1.2;
    margin-bottom: 10px;
    }

#AuthModal .enter-form .form-note {
    font-size: 12px;
    color: #383838;
    line-height: 1.1;
    margin-bottom: 20px;
}

#AuthModal .enter-form .form-note span {
    color: #042eb0;
}

#AuthModal .enter-form .btn {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
}

#AuthModal .enter-form .forget-link {
    margin-top: -10px;
    margin-bottom: 20px;
    color: #042EB0;
    line-height: 1.35;
    font-weight: 500;
    text-align: left;
}

#AuthModal .enter-form .forget-link a:hover {
    text-decoration: underline;
}

#AuthModal .enter-form .form-agreement {
    margin-top: 20px;
    line-height: 1.3;
    font-weight: 500;
    text-align: left;
}

#AuthModal .enter-form .form-agreement a {
    color: #042EB0;
}

#AuthModal .enter-form .form-agreement a:hover {
    text-decoration: underline;
}

#AuthModal .enter-form .error {
    border-color: #B00000 !important;
}

#AuthModal .error-note {
    font-weight: 500;
    font-size: 12px;
    line-height: 1.25;
    color: #B00000;
    padding: 8px 10px;
    background: #FFE1E1;
    border-radius: 2px;
    margin-bottom: 20px;
}

#AuthModal .input-error-note {
    margin-top: 5px;
    padding-left: 21px;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.3;
    color: #B00000;
    background: url("../images/alert.svg") left center no-repeat;
}

#AuthModal .password-input .custom-input-label {
    width: calc(100% - 70px);
}

#AuthModal .password-input input {
    padding-right: 50px;
}

#AuthModal .password-toggle {
    position: absolute;
    right: 20px;
    top: 0;
    cursor: pointer;
    width: 18px;
    height: 44px;
    transition: all 0.3s ease-out;
    background: url("../images/eye-off.svg") center no-repeat;
    filter: grayscale(1);
    opacity: 0.5;
}

#AuthModal .password-toggle:hover {
    filter: none;
    opacity: 1;
}

#AuthModal .password-toggle.opacity {
    background: url("../images/eye.svg") center no-repeat;
}

@media (max-width: 767px) {
    #AuthModal .enter-form #qr-code img {
        width: 75px;
    }
}