.form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    padding-bottom: 80px;
}

.login-form {
    width: 100%;
    display: flex;
    padding-top: 80px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--Spacing-40px, 40px);
    border-radius: var(--Radius-radius-8px, 8px);
}

.login-form-content {
    padding: 80px 64px !important;
    width: 80%;
    border-radius: var(--Radius-radius-8px, 8px);
    background: #FFF;
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.06);
}

.login-form-contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.login-form-footer .login-form-cover-title {
    color: var(--Text-Primary, #255CEB);
    text-align: center;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: "Noto Sans JP";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.login-form-input {
    width: 100%;
}

span.login-form-input-text {
    color: #8B94A5;
    font-feature-settings: 'liga' off, 'clig' off;

    /* Body Text/body-xxs */
    font-family: "Noto Sans JP";
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

button.stretch {
    width: 100%;
    display: flex;
    background-color: #1D47D8;
    padding: var(--Spacing-16px, 16px) var(--Spacing-28px, 28px);
    justify-content: center;
    align-items: center;
    gap: 8px;
    align-self: stretch;
}

.login-form-action-item a {
    color: var(--Text-Link, #3B7BF6);
    text-align: center;
    font-feature-settings: 'liga' off, 'clig' off;

    /* Body Text/body-md-bold */
    font-family: "Noto Sans JP";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 27px;
    /* 180% */
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.login_form_input_field_cover {
    width: 70%;
}

.login-form-actions {
    display: flex;
    align-items: center;
}

p.title-login-bottom-top {
    color: var(--Text-Disabled, #8B94A5);
    font-feature-settings: 'liga' off, 'clig' off;

    /* Body Text/body-xs */
    font-family: "Noto Sans JP";
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 20.8px;
    /* 160% */
    color: var(--Text-Disabled, #8B94A5);
    font-feature-settings: 'liga' off, 'clig' off;

    /* Body Text/body-xs */
    font-family: "Noto Sans JP";
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 20.8px;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

p.title-login-bottom-top a {
    color: var(--Text-Disabled, #8B94A5);
    text-decoration: underline;
}

p.title-login-bottom-middle {
    color: var(--Text-Body-sub, #6C778B);
    text-align: center;
    font-feature-settings: 'liga' off, 'clig' off;

    /* Body Text/body-lg-bold */
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 25.6px;
    /* 160% */
}

p.title-login-bottom-sub {
    color: var(--Text-Body-sub, #6C778B);
    text-align: center;
    font-feature-settings: 'liga' off, 'clig' off;

    /* Body Text/body-sm */
    font-family: "Noto Sans JP";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    /* 142.857% */
}

/* tablet */
@media (min-width: 768px) and (max-width: 1025px) {
    .custom-container {
        height: 100vh;
    }

    .custom-container>div {
        height: 100%;
    }

    .form {
        padding-bottom: 0px !important;
        margin-bottom: 80px !important;
    }
}


/* Mobile (điện thoại nhỏ) - tối đa 480px */
@media (max-width: 480px) {
    .login-form-content {
        padding: 0;
    }

    .login-form-container {
        padding: 16px 16px 48px 16px !important;
        background: #F8F9FB;
    }

    .login-form-content {
        width: 100% !important;
        padding: 40px 16px !important;
    }

    .login-form {
        width: 100%;
        padding-top: 0;
    }

    .login_form_input_field_cover {
        width: 100%;
    }

    .form {
        padding-bottom: 0px !important;
        gap: 20px;
    }
}

/* Mobile (điện thoại lớn) - tối đa 768px */
@media (max-width: 768px) {
    .login-form-content {
        padding: 0;
    }

    .login-form-container {
        padding: 16px 16px 48px 16px !important;
        background: #F8F9FB;
    }

    .login-form-content {
        padding: 40px 16px !important;
    }
}

/* Tablet - tối đa 992px */
@media (max-width: 992px) {
    /* CSS cho tablet ngang và thiết bị nhỏ hơn */
}

/* Desktop nhỏ - tối đa 1200px */
@media (max-width: 1200px) {
    /* CSS cho desktop nhỏ hoặc laptop */
}

/* Desktop lớn trở lên */
@media (min-width: 1201px) {
    /* CSS cho desktop lớn, màn hình rộng */
}