/* login form */
.auth-form {
    width: 425px;
    margin: 50px auto;
}

.auth-form form.disabled {
    pointer-events: none;
    opacity: 0.5;
}

.auth-form__popup .close {
    display: block;
}

.auth-form__top, .auth-form__bottom {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
    padding: 0 5px;
}

.auth-form__bottom {
    justify-content: flex-end;
}

.auth-form__top .auth-form__label {
    cursor: pointer;
    color: rgb(34, 129, 207);
}

.auth-form__top .auth-form__label.active {
    display: none;
}

.auth-form__top h1 {
    color: #000;
    font-weight: normal;
    font-size: 18px;
    padding-bottom: 8px;
    margin-bottom: -4px;
    border-bottom: 1px solid black;
}

.auth-form .form-component {
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #fff;
    margin-bottom: 10px;
}

.auth-form .form-component input[type=checkbox] {
    display: inline-block;
    width: auto;
    margin-bottom: 0.35em;
}

.auth-form .description {
    padding: 5px;
    color: #9a9696;
    font-size: 0.9em;
}


.auth-form .error {
    display: none;
    padding: 5px 10px;
}

.auth-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.auth-form .form-component input {
    width: calc(100% - 12px);
    background: linear-gradient(to bottom, #ffffff, #eeeef0);
    padding: 5px;
    border: 1px solid #AAA;
}

.auth-form .form-component input:focus {
    outline: none;
    border: 1px solid rgb(34, 129, 207);
}

.auth-form .btn {
    background: rgb(34, 129, 207);
    border: 1px solid #C2D7EF;
    border-radius: 5px;
    padding: 10px 15px;
    font-weight: bolder;
    color: #fff;
}

.auth-form .password-wrapper {
    position: relative;
}

.auth-form .password-wrapper .auth-form__recover {
    position: absolute;
    top: 4px;
    right: 5px;
    font-size: 0.9em;
    opacity: 0.8;
    cursor: pointer;
}

.auth-form .password-wrapper .auth-form__recover:hover {
    opacity: 1;
    color: rgb(34, 129, 207);
}

@media (max-width: 600px) {
    .auth-form {
        width: calc(100% - 20px);
        padding: 0 10px;
    }
}
