.auth-bg {
    background: url('../images/bg-login2.jpg');
    min-height: 100vh;
    
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-form-wrap {
    background: #FFFFFF;
    box-shadow: 0px 0px 100px rgba(31, 32, 34, 0.2);
    border-radius: 20px;
    padding: 35px;
    width: 430px;
}

.auth-form-wrap .form-check-input {
    width: 16px;
    height: 16px;
    margin-top: 2px !important;
    margin-right: 6px;
}

.auth-form-wrap h1 {
    font-weight: 600;
    font-size: 32px;
    color: #091332;
    margin-bottom: 15px;
    margin-top: 35px;
}

.auth-form-wrap h2 {
    font-weight: 400;
    font-size: 14px;
    color: #66708D;
    margin-bottom: 30px;
}

.form-label {
    font-size: 14px;
}

.password-field {
    position: relative;
}

.password-field img {
    position: absolute;
    cursor: pointer;
}

.password-hide {
    right: 20px;
    bottom: 12px;
}

.password-show {
    right: 20px;
    bottom: 15px;
}

.form-check:hover {
    background: transparent !important;
}

@media(max-width:767px) {
    .auth-form-wrap {
        width: calc(100vw - 60px);
        margin: 30px auto;
        padding: 20px;
    }
}