.auth-area {
    background: linear-gradient(180deg, #F8FFF5 0%, #FFFFFF 100%);
    padding: 40px 0;
    width: 100%;
    min-height: 100vh;
}

.auth-wrapper {
    display: flex;
    justify-content: center;
    gap: 43px;
}

.auth-left {
    margin-top: 12px;
    width: 380px;
}

.auth-left .logo-common {
    justify-content: center;
}

.auth-left .logo-common img {
    height: 79px;
}

.auth-card {
    position: relative;
    border-radius: 20px;
    padding: 22px;
    background: #fff;
    box-shadow: 2px 2px 10px 2px #979ea380;
}

.auth-card-head {
    text-align: center;
    margin-bottom: 30px;
}

.auth-card-head .auth-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 25.3px;
    margin-bottom: 16px;
}

.auth-card-head .auth-des {
    font-size: 11px;
    font-weight: 400;
    line-height: 16.5px;
    color: #000000A6;
    margin-bottom: 0;
}

.auth-card-body {
    padding: 0 8px;
}

.auth-card-form .form-input-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.form-checkbox-label {
    margin-bottom: 0;
    line-height: 1.5;
}

.auth-card-form .form-checkbox-control {
    margin: 0;
}

.auth-card-form .remember {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.auth-card-form .forgot-pass .text {
    font-size: 11px;
    font-weight: 500;
    line-height: 13.92px;
}

.form-btn-wrapper {
    margin-top: 18px;
}

.auth-card-form .btn-login {
    font-size: 13px;
    font-weight: 400;
    line-height: 16.45px;
    height: 42px;
}

.auth-card-bottom {
    margin-top: 24px;
}

.auth-card-bottom .notice {
    text-align: center;
}

.auth-card-bottom .notice p {
    margin-bottom: 0;
    font-size: 11px;
    font-weight: 400;
    line-height: 16.5px;
    color: #000000A6;
}

.auth-right {
    width: 605px;
    /* height: 640px; */
    border-radius: 20px;
    /* background: #3763E7; */
    /* padding-top: 62px; */
    position: relative;
    z-index: 1;
}

.auth-right .img-wrap {
    padding-top: 100%;
}

.auth-right .img-wrap img {
    border-radius: 20px
}

.auth-right .logo-common {
    justify-content: center;
    margin-bottom: 64.45px;
    gap: 28px;
}

.auth-right .logo-common .text {
    font-size: 48.97px;
    font-weight: 700;
    line-height: 61.95px;
}

.auth-right .img-mask {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
}

.auth-register .auth-right {
    padding-top: 32px;
}

.auth-register .auth-right .logo-common {
    margin-bottom: 10px;
}

.auth-register .auth-right .box-img {
    text-align: center;
}

.auth-register .auth-right::after {
    content: "";
    display: block;
    background-image: url('/assets/frontend/img/img-pseudo-register.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 378.29px;
    position: absolute;
    right: 0;
    top: 102px;
    z-index: -1;
}

.auth-forget-password .auth-card-bottom {
    margin-top: 16px;
}

.auth-forget-password .btn-login {
    background: #066754;
    border: 1px solid #0000001A;
}

.auth-forget-password .notice a {
    font-size: 11px;
    font-weight: 400;
    line-height: 16.5px;
    color: #000000A6;
    text-decoration: underline;
}

@media screen and (max-width: 991px) {
    .auth-wrapper {
        flex-direction: column;
    }
    .auth-left {
        width: 100%;
    }
    .auth-right {
        width: 100%;
        height: auto;
    }
    .auth-right img {
        width: 100%;
    }
    .auth-right .img-mask {
        position: relative;
        margin-top: 32px;
    }

    .auth-register .auth-right::after {
        height: 580px;
    }
}

@media screen and (max-width: 768px) {
    .auth-register .auth-right::after {
        height: 430px;
    }
    .auth-right {
        display: none;
    }
}

@media screen and (max-width: 575px) {
    .auth-card {
        padding: 22px 14px;
    }
    .auth-card-head .auth-title {
        font-size: 16px;
    }
    .auth-card-head .auth-des {
        font-size: 10px;
    }
    .auth-register .auth-right::after {
        height: 270px;
    }
}
