
    /* ══════════════════════════════════════════
           FULL SCREEN WRAPPER — single unified blue background
           (background sits on the wrapper only; left/right panels stay transparent, no split colors)
        ══════════════════════════════════════════ */
    .login-ml-page {
        min-height: 100vh;
        width: 100%;
        background: linear-gradient(135deg, #091830 0%, #0d2d5e 55%, #1a4a7a 100%);
        display: grid;
        grid-template-columns: 1.05fr 1fr;
        align-items: stretch;
        position: relative;
        overflow: hidden;
    }

    /* grid dots */
    .login-ml-page::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image:
            linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
        background-size: 56px 56px;
        pointer-events: none;
    }

    /* teal glow top-right */
    .login-ml-page::after {
        content: '';
        position: absolute;
        top: -100px;
        right: -80px;
        width: 480px;
        height: 480px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(56, 217, 192, .14) 0%, transparent 65%);
        pointer-events: none;
    }

    /* coral glow bottom-left */
    .login-ml-glow-bl {
        position: absolute;
        bottom: -120px;
        left: -80px;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(232, 112, 95, .09) 0%, transparent 65%);
        pointer-events: none;
        z-index: 0;
    }

    /* ══════════════════════════════════════════
           LEFT SIDE — hero content (transparent, sits on shared background)
        ══════════════════════════════════════════ */
    .login-ml-left {
        padding: clamp(36px, 5vh, 64px) clamp(32px, 4vw, 64px);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: relative;
        z-index: 1;
    }

    /* ── Logo ── */
    .login-ml-logo {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .login-ml-logo img {
        height: clamp(40px, 5vh, 56px);
        width: auto;
    }

    .login-ml-logo-fallback {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .login-ml-logo-mark {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        background: #e8705f;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        font-weight: 800;
        color: #fff;
        flex-shrink: 0;
    }

    .login-ml-logo-name {
        font-size: 20px;
        font-weight: 700;
        color: #fff;
        letter-spacing: -0.3px;
    }

    /* ── Hero ── */
    .login-ml-hero {}

    .login-ml-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 6px 16px;
        border: 1px solid rgba(255, 255, 255, .18);
        border-radius: 9999px;
        background: rgba(255, 255, 255, .07);
        font-size: 12px;
        font-weight: 500;
        color: rgba(255, 255, 255, .72);
        margin-bottom: clamp(16px, 2.5vh, 24px);
    }

    .login-ml-eyebrow::before {
        content: '';
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #e8705f;
        flex-shrink: 0;
    }

    .login-ml-hero h2 {
        font-size: clamp(36px, 5vw, 72px);
        font-weight: 800;
        line-height: 1.05;
        letter-spacing: -0.035em;
        color: #fff;
        margin-bottom: var(--space-4);
    }

    .login-ml-hero h2 em {
        background: linear-gradient(90deg, var(--coral) 0%, var(--coral-soft) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-style: normal !important;
    }

    .login-ml-hero p {
        font-size: clamp(13px, 1.1vw, 16px);
        color: rgba(255, 255, 255, .5);
        line-height: 1.75;
        max-width: 380px;
        margin: 0;
    }

    /* ── Stats ── */
    .login-ml-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-top: clamp(24px, 3vh, 36px);
    }

    .login-ml-stat {
        background: rgba(255, 255, 255, .06);
        border: 1px solid rgba(255, 255, 255, .1);
        border-radius: 12px;
        padding: 14px 16px;
    }

    .login-ml-stat-num {
        font-size: clamp(18px, 1.8vw, 24px);
        font-weight: 800;
        color: #fff;
        letter-spacing: -0.04em;
        line-height: 1;
        margin-bottom: 4px;
    }

    .login-ml-stat-num span {
        color: #e8705f;
    }

    .login-ml-stat-label {
        font-size: 11px;
        color: rgba(255, 255, 255, .4);
        line-height: 1.4;
    }

    /* ── Tagline ── */
    .login-ml-tagline {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .login-ml-tagline-line {
        width: 20px;
        height: 2px;
        background: #e8705f;
        border-radius: 9999px;
        flex-shrink: 0;
    }

    .login-ml-tagline-text {
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, .28);
    }

    /* ══════════════════════════════════════════
           RIGHT SIDE — login form (transparent, sits on shared background)
        ══════════════════════════════════════════ */
    .login-ml-right {
        padding: clamp(36px, 5vh, 64px) clamp(32px, 4vw, 80px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        overflow-y: auto;
        position: relative;
        z-index: 1;
    }

    .login-ml-form-inner {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        background: #fff;
        border-radius: 16px;
        padding: clamp(28px, 3.5vh, 44px) clamp(24px, 2.8vw, 40px);
        box-shadow: 0 16px 48px rgba(0, 0, 0, .4);
    }

    .login-ml-form-header {
        margin-bottom: clamp(24px, 3.5vh, 36px);
    }

    .login-ml-form-header h1 {
        font-size: clamp(22px, 2.2vw, 30px);
        font-weight: 800;
        color: #0d2d5e;
        margin: 0 0 6px;
        letter-spacing: -0.4px;
    }

    .login-ml-form-header p {
        font-size: 14px;
        color: #4a5f78;
        margin: 0;
        line-height: 1.5;
    }

    /* ── Fields ── */
    .login-ml-field {
        margin-bottom: 16px;
    }

    .login-ml-label {
        display: block;
        font-size: 12px;
        font-weight: 600;
        color: #0d2d5e;
        margin-bottom: 7px;
        letter-spacing: 0.03em;
    }

    .login-ml-input-wrap {
        position: relative;
    }

    .login-ml-input-icon {
        position: absolute;
        left: 14px;
        top: 50%;
        transform: translateY(-50%);
        color: #4a6fa5;
        font-size: 14px;
        pointer-events: none;
    }

    .login-ml-input {
        width: 100%;
        height: 46px;
        border: 1.5px solid rgba(26, 74, 122, .14);
        border-radius: 10px;
        padding: 0 14px 0 42px;
        font-size: 14px;
        font-family: inherit;
        color: #0d2d5e;
        background: #f4f7fb;
        outline: none;
        transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
    }

    .login-ml-input::placeholder {
        color: #9fb3c8;
    }

    .login-ml-input:focus {
        border-color: #e8705f;
        background: #fff;
        box-shadow: 0 0 0 3px rgba(232, 112, 95, .11);
    }

    .login-ml-input-pw {
        padding-right: 44px;
    }

    .login-ml-toggle-pw {
        position: absolute;
        right: 13px;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        cursor: pointer;
        color: #4a6fa5;
        font-size: 14px;
        padding: 4px;
        line-height: 1;
        transition: color 160ms ease;
    }

    .login-ml-toggle-pw:hover {
        color: #0d2d5e;
    }

    /* ── Row ── */
    .login-ml-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 24px;
        gap: 8px;
    }

    .login-ml-check-label {
        display: flex;
        align-items: center;
        gap: 7px;
        font-size: 13px;
        color: #4a5f78;
        cursor: pointer;
        user-select: none;
    }

    .login-ml-checkbox {
        width: 15px;
        height: 15px;
        accent-color: #e8705f;
        cursor: pointer;
        flex-shrink: 0;
    }

    .login-ml-link {
        font-size: 13px;
        color: #e8705f;
        font-weight: 500;
        text-decoration: none;
        white-space: nowrap;
    }

    .login-ml-link:hover {
        text-decoration: underline;
    }

    /* ── Button ── */
    .login-ml-btn {
        width: 100%;
        height: 48px;
        background: #e8705f;
        border: none;
        border-radius: 10px;
        color: #fff;
        font-size: 15px;
        font-weight: 700;
        font-family: inherit;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        transition: background 160ms ease, transform 120ms ease, box-shadow 160ms ease;
        box-shadow: 0 4px 18px rgba(232, 112, 95, .3);
    }

    .login-ml-btn:hover {
        background: #d4604f;
        box-shadow: 0 6px 22px rgba(232, 112, 95, .38);
    }

    .login-ml-btn:active {
        transform: scale(0.98);
    }

    .login-ml-btn i {
        font-size: 13px;
    }

    /* ══════════════════════════════════════════
           RESPONSIVE
        ══════════════════════════════════════════ */

    /* iPad landscape (769 – 1180px) */
    @media (min-width: 769px) and (max-width: 1180px) {
        .login-ml-stats {
            display: none;
        }

        .login-ml-hero h2 {
            font-size: clamp(24px, 3vw, 36px);
        }

        .login-ml-right {
            padding: clamp(32px, 4vh, 52px) clamp(28px, 3.5vw, 52px);
        }
    }

    /* Tablet dọc + phone landscape (≤ 768px) — stack dọc */
    @media (max-width: 768px) {

        html,
        body {
            overflow: auto;
        }

        .login-ml-page {
            grid-template-columns: 1fr;
            grid-template-rows: auto 1fr;
            height: auto;
            min-height: 100vh;
        }

        .login-ml-left {
            padding: 28px 28px 24px;
            flex-direction: row;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }

        .login-ml-hero {
            display: none;
        }

        .login-ml-stats {
            display: none;
        }

        .login-ml-right {
            padding: 36px 28px 48px;
            justify-content: flex-start;
            overflow-y: visible;
        }

        .login-ml-form-inner {
            max-width: 100%;
        }
    }

    /* Phone (≤ 600px) */
    @media (max-width: 600px) {
        .login-ml-left {
            padding: 22px 20px;
        }

        .login-ml-logo img {
            height: 38px;
        }

        .login-ml-logo-mark {
            width: 34px;
            height: 34px;
            font-size: 15px;
        }

        .login-ml-logo-name {
            font-size: 17px;
        }

        .login-ml-tagline-text {
            font-size: 10px;
            letter-spacing: 0.08em;
        }

        .login-ml-right {
            padding: 28px 20px 44px;
        }

        .login-ml-form-header h1 {
            font-size: 20px;
        }

        .login-ml-form-header p {
            font-size: 13px;
        }

        .login-ml-input {
            height: 48px;
            font-size: 15px;
        }

        .login-ml-btn {
            height: 50px;
            font-size: 15px;
        }

        .login-ml-row {
            flex-wrap: wrap;
        }
    }

    /* iPhone SE & nhỏ (≤ 390px) */
    @media (max-width: 390px) {
        .login-ml-left {
            padding: 18px 16px;
        }

        .login-ml-right {
            padding: 24px 16px 40px;
        }

        .login-ml-logo-mark {
            width: 30px;
            height: 30px;
            font-size: 13px;
        }

        .login-ml-logo-name {
            font-size: 15px;
        }

        .login-ml-form-header h1 {
            font-size: 18px;
        }

        .login-ml-form-header p {
            font-size: 12px;
        }

        .login-ml-label {
            font-size: 11px;
        }

        .login-ml-input {
            height: 46px;
            font-size: 14px;
        }

        .login-ml-btn {
            height: 48px;
            font-size: 14px;
        }

        .login-ml-check-label {
            font-size: 12px;
        }

        .login-ml-link {
            font-size: 12px;
        }
    }

    /* iPhone SE cũ / 320px */
    @media (max-width: 320px) {
        .login-ml-tagline {
            display: none;
        }

        .login-ml-input {
            height: 44px;
        }

        .login-ml-btn {
            height: 46px;
            font-size: 13px;
        }
    }

    /* Landscape phone (chiều cao thấp) */
    @media (max-height: 500px) and (orientation: landscape) {

        html,
        body {
            overflow: auto;
        }

        .login-ml-page {
            grid-template-columns: 1fr 1fr;
            height: auto;
            min-height: 100vh;
        }

        .login-ml-left {
            flex-direction: column;
            justify-content: space-between;
            padding: 24px 28px;
            min-height: 100%;
        }

        .login-ml-stats {
            display: none;
        }

        .login-ml-hero p {
            display: none;
        }

        .login-ml-hero h2 {
            font-size: 22px;
            margin-bottom: 0;
        }

        .login-ml-eyebrow {
            margin-bottom: 12px;
        }

        .login-ml-right {
            padding: 24px 28px;
            overflow-y: auto;
        }

        .login-ml-form-header {
            margin-bottom: 16px;
        }

        .login-ml-field {
            margin-bottom: 12px;
        }

        .login-ml-input {
            height: 40px;
        }

        .login-ml-btn {
            height: 42px;
        }

        .login-ml-row {
            margin-bottom: 16px;
        }
    }