.wrapper__password .wrapper__content {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--neutral-light-20);
}

.wrapper--login {
    width: 100%;
    min-height: 100vh;
}

.wrapper--login .header__lang-text,
.wrapper--login .icon--lang-arrow {
    display: none;
}

.wrapper--login .header__lang-list {
    top: 35px;
}

.wrapper--login .header__utils {
    display: flex;
}

.wrapper--login .wrapper__content {
}

.wrapper--login .wrapper__main {
    flex-direction: row;
}
.wrapper__main {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-width: 0;
}

.wrapper--password .wrapper__content {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--neutral-light-20);
}

.login__left {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: var(--login-left-bg);
}

.login__right {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: var(--login-right-bg);
}

.login__form {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    width: 455px;
    padding: 150px 40px;
    border-radius: 8px;
    /*background-color: var(--neutral-light-0);*/
}

.login__form--password {
    padding: 40px;
}

.login__form--invite {
    width: 540px;
    padding: 40px;
}

.login__desc {
    font-size: 14px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.112px;
    color: var(--login-form-control-label);
    margin-bottom: 20px;
}

.login__title {
    /*width: 120px;*/
    margin-bottom: 30px;
}

.login__logo {
    width: 120px;
}

.login-field {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-bottom: 30px;
}

.login-field .field__label {
    margin-bottom: 10px;
    color: var(--login-form-control-label);
}

.login-field .is-error .field__msg {
    margin-top: 4px;
}


.login__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

.login__actions .login__btn {
    flex: 1;
}

.login-form__submit {
    width: 100%;
    margin-bottom: 20px;
}

.find-password {
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
    color: var(--secondary-default);
    text-decoration: none;
    cursor: pointer;
}

.is-error .field__msg {
    display: block;
    margin-top: 0;
}

.question-desc {
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
    color: var(--login-form-control-label);
}

.login-desc {
    color: var(--secondary-default);
    text-decoration: underline;
}

.login__copyright {
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 13px */
    letter-spacing: -0.08px;
    color: var(--login-form-control-label);
}

.notice {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--neutral-light-40);
    border-radius: 4px;
    background-color: var(--neutral-light-10);
}

.notice__list {
    margin: 0;
    padding-left: 18px;
    color: var(--neutral-light-60);
    font-size: 12px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.096px;
    list-style: initial;
}

.notice__item + .notice__item {
    margin-top: 4px;
}

.notice__title {
    margin-bottom: 6px;
    font-size: 12px;
    font-weight: 500;
    line-height: 130%;
    letter-spacing: -0.096px;
    color: var(--neutral-light-70);
}

/* =========================================
   Responsive
   ========================================= */
/* mobile */
@media screen and (max-width: 768px) {
    .login__left {
        background-image: url('../../images/content/login-main-mb.png');
        background-position: bottom;
        background-repeat: no-repeat;
        background-size: contain;
    }
    .login__right {
        display: none;
    }

    .login__form {
        justify-content: center;
        width: 100%;
        padding: 16px 16px 115px 16px;
        /*background-color: var(--neutral-light-0);*/
    }


    .wrapper--login .wrapper__header {
        background-color: var(--neutral-light-0);
    }

    .wrapper--login .icon--language {
        width: 14px;
        height: 14px;
        background-size: 14px;
    }

    .wrapper--login .header__lang-text {
        display: block;
        padding: 4px 4px 0 4px;
        font-size: 12px;
        font-weight: 400;
        line-height: 130%; /* 15.6px */
        letter-spacing: -0.096px;
        color: var(--neutral-light-50);
    }

    .wrapper--login .icon--lang-arrow {
        display: block;
    }

}

input[type="password"]::-ms-reveal {
    display: none;
}

input[type="password"]::-ms-clear {
    display: none;
}