
:root {
    --navy:       #0d1b3e;
    --navy-mid:   #162553;
    --navy-light: #1e3470;
    --gold:       #c8972a;
    --gold-light: #f0c35a;
    --gold-pale:  #fdf3dd;
    --white:      #ffffff;
    --off-white:  #f7f8fc;
    --text-main:  #1a2340;
    --text-sub:   #5e6885;
    --border:     #e3e7f0;
    --shadow-sm:  0 2px 8px rgba(13,27,62,.08);
    --shadow-md:  0 8px 32px rgba(13,27,62,.14);
    --shadow-lg:  0 20px 60px rgba(13,27,62,.22);
    --radius:     14px;
    --input-h:    50px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body { height: 100%; }

body {
    font-family: 'Be Vietnam Pro', -apple-system, BlinkMacSystemFont, sans-serif;
    min-height: 100vh;
    min-height: 100dvh;
    background: var(--navy);
    display: flex;
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: var(--text-main);
}

img { max-width: 100%; display: block; }
button { font-family: inherit; }

/* ═══════════════════════════════════════
   MOBILE HERO (hidden on desktop)
═══════════════════════════════════════ */
.mobile-hero { display: none; }

/* ═══════════════════════════════════════
   LEFT PANEL (DESKTOP)
═══════════════════════════════════════ */
.left-panel {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 64px 72px;
    overflow: hidden;
    background: linear-gradient(150deg,
        #0a1530 0%,
        #112050 40%,
        #162980 70%,
        #0d1b3e 100%);
}

/* Animated aurora blobs */
.lp-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .45;
    animation: blobFloat 12s ease-in-out infinite alternate;
    will-change: transform;
}
.lp-blob-1 {
    width: 460px; height: 460px;
    top: -120px; right: -80px;
    background: radial-gradient(circle, #2a4db0 0%, transparent 70%);
    animation-delay: 0s;
}
.lp-blob-2 {
    width: 320px; height: 320px;
    bottom: -60px; left: -60px;
    background: radial-gradient(circle, #c8972a 0%, transparent 65%);
    opacity: .25;
    animation-delay: -4s;
}
.lp-blob-3 {
    width: 240px; height: 240px;
    top: 50%; left: 40%;
    background: radial-gradient(circle, #1a5fb5 0%, transparent 70%);
    opacity: .3;
    animation-delay: -8s;
}
@keyframes blobFloat {
    0%   { transform: translate(0,0) scale(1); }
    100% { transform: translate(30px,-30px) scale(1.12); }
}

/* Subtle grid */
.grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 52px 52px;
}

/* Diagonal divider line */
.left-panel::after {
    content: '';
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom,
        transparent 0%,
        rgba(200,151,42,.5) 30%,
        rgba(200,151,42,.5) 70%,
        transparent 100%);
}

/* ── Entrance animation ── */
@keyframes fadeUp {
    0%   { opacity: 0; transform: translateY(14px); }
    100% { opacity: 1; transform: translateY(0); }
}
.lp-anim {
    opacity: 0;
    animation: fadeUp .7s cubic-bezier(.2,.8,.2,1) forwards;
    animation-delay: var(--d, 0s);
}

/* Logo */
.lp-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 64px;
    position: relative;
    z-index: 2;
}
.lp-logo-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.14);
    display: grid;
    place-items: center;
    box-shadow: 0 8px 24px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.1);
    flex-shrink: 0;
    padding: 8px;
    transition: transform .3s;
}
.lp-logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,.3));
}
.lp-logo:hover .lp-logo-icon { transform: scale(1.05) rotate(-2deg); }

.lp-logo-text .t1 {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    letter-spacing: .5px;
}
.lp-logo-text .t2 {
    font-size: 11px;
    color: rgba(255,255,255,.55);
    font-weight: 400;
    margin-top: 2px;
}

/* Heading */
.lp-heading {
    position: relative;
    z-index: 2;
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 600;
    color: #fff;
    line-height: 1.12;
    margin-bottom: 22px;
    letter-spacing: -.5px;
}
.lp-heading .gold {
    color: var(--gold-light);
    background: linear-gradient(90deg, #f0c35a, #e8b840);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lp-sub {
    position: relative;
    z-index: 2;
    font-size: 14px;
    color: rgba(255,255,255,.62);
    line-height: 1.75;
    max-width: 380px;
    margin-bottom: 52px;
}

/* Feature list */
.lp-features {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.lp-feat {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px 12px 8px 0;
    border-radius: 10px;
    transition: transform .3s, background .3s;
}
.lp-feat:hover {
    transform: translateX(4px);
    background: rgba(255,255,255,.03);
}
.lp-feat-icon {
    width: 38px; height: 38px;
    border-radius: 11px;
    background: rgba(200,151,42,.15);
    border: 1px solid rgba(200,151,42,.28);
    display: grid;
    place-items: center;
    color: var(--gold-light);
    font-size: 14px;
    flex-shrink: 0;
    backdrop-filter: blur(4px);
    transition: transform .3s, background .3s;
}
.lp-feat:hover .lp-feat-icon {
    background: rgba(200,151,42,.22);
    transform: scale(1.08);
}
.lp-feat-text {
    font-size: 13px;
    color: rgba(255,255,255,.72);
    font-weight: 400;
}

/* Accent badge (bottom-right of left panel) */
.lp-badge {
    position: absolute;
    bottom: 36px; right: 32px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 3px;
}
.lp-badge-line {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(200,151,42,.6));
    width: 80px;
}
.lp-badge-text {
    font-size: 10px;
    color: rgba(255,255,255,.35);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
}

/* ═══════════════════════════════════════
   RIGHT PANEL
═══════════════════════════════════════ */
.right-panel {
    width: 42%;
    min-width: 560px;
    max-width: 780px;
    flex-shrink: 0;
    background: var(--off-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 56px 64px;
    position: relative;
    overflow-y: auto;
}

/* Card wrapper - constrain form width inside panel */
.rp-card {
    width: 100%;
    max-width: 460px;
}

/* Subtle top accent bar */
.right-panel::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--navy) 0%, var(--gold) 50%, var(--navy-light) 100%);
}

.rp-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 6px;
    line-height: 1.1;
}
.rp-sub {
    font-size: 13px;
    color: var(--text-sub);
    margin-bottom: 32px;
    line-height: 1.5;
}

/* ── Alert ── */
.alert-box {
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 13px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 9px;
    font-weight: 500;
    border: 1px solid transparent;
    animation: alertIn .35s ease;
}
@keyframes alertIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}
.alert-ok   { background: #ecfdf5; color: #065f46; border-color: #a7f3d0; }
.alert-err  { background: #fef2f2; color: #991b1b; border-color: #fecaca; }
.alert-warn { background: #fffbeb; color: #92400e; border-color: #fde68a; }

/* ── Lockout bar ── */
.lockout-bar { height: 3px; background: #fee2e2; border-radius: 2px; margin: -8px 0 14px; overflow: hidden; }
.lockout-prg { height: 100%; background: linear-gradient(90deg, #ef4444, #dc2626); transition: width 1s linear; border-radius: 2px; }

/* ── Form groups ── */
.form-group { width: 100%; margin-bottom: 18px; }

.form-group label {
    font-size: 11.5px;
    font-weight: 700;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: .7px;
    margin-bottom: 8px;
    display: block;
}

/* Icon-prefixed input wrapper */
.input-wrap { position: relative; }
.input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #9aa3bc;
    font-size: 14px;
    pointer-events: none;
    transition: color .25s, transform .25s;
}
.input-wrap:focus-within .input-icon {
    color: var(--gold);
    transform: translateY(-50%) scale(1.08);
}

.form-group input {
    width: 100%;
    height: var(--input-h);
    padding: 0 44px 0 42px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: 14px;
    background: var(--white);
    font-family: 'Be Vietnam Pro', sans-serif;
    color: var(--text-main);
    transition: border .2s, box-shadow .2s, background .2s;
    -webkit-appearance: none;
    appearance: none;
}
.form-group input::placeholder { color: #b0b8cc; }
.form-group input:hover:not(:focus) { border-color: #c5cce0; }
.form-group input:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 4px rgba(200,151,42,.18);
    background: var(--white);
}

/* Password toggle */
.pwd-wrap { position: relative; }
.pwd-wrap input { padding-right: 46px; }
.pwd-toggle {
    position: absolute;
    right: 13px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #9aa3bc;
    font-size: 14px;
    padding: 8px;
    line-height: 1;
    transition: color .2s;
    border-radius: 6px;
}
.pwd-toggle:hover { color: var(--navy); background: rgba(13,27,62,.06); }
.pwd-toggle:focus-visible { outline: 2px solid var(--gold); outline-offset: 1px; }

/* Shake animation */
@keyframes shake {
    0%,100% { transform: translateX(0); }
    18%      { transform: translateX(-8px); }
    36%      { transform: translateX(8px); }
    54%      { transform: translateX(-5px); }
    72%      { transform: translateX(5px); }
}
.shake { animation: shake .45s ease; }

/* ── Remember-me row ── */
.form-row {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: -4px 0 14px;
}
.rmb-check {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
    font-size: 13px;
    color: var(--text-sub);
    font-weight: 500;
    padding: 4px 2px;
}
.rmb-check input { position: absolute; opacity: 0; pointer-events: none; width: 0; height: 0; }
.rmb-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border: 1.8px solid var(--border);
    border-radius: 5px;
    background: #fff;
    color: #fff;
    transition: all .18s;
    flex-shrink: 0;
}
.rmb-box i { font-size: 10px; opacity: 0; transform: scale(.6); transition: all .18s; }
.rmb-check:hover .rmb-box { border-color: var(--gold); }
.rmb-check input:focus-visible + .rmb-box { outline: 2px solid var(--gold-light); outline-offset: 2px; }
.rmb-check input:checked + .rmb-box {
    background: var(--navy);
    border-color: var(--navy);
}
.rmb-check input:checked + .rmb-box i { opacity: 1; transform: scale(1); }
.rmb-check input:checked ~ .rmb-text { color: var(--text-main); }
.rmb-text { line-height: 1.2; }

/* ── Submit button ── */
.btn-login {
    width: 100%;
    height: 52px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: #fff;
    border: none;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Be Vietnam Pro', sans-serif;
    cursor: pointer;
    transition: all .25s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 8px;
    letter-spacing: .3px;
    box-shadow: 0 4px 16px rgba(13,27,62,.25);
    position: relative;
    overflow: hidden;
}
.btn-login::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,.12) 0%, transparent 60%);
    pointer-events: none;
}
.btn-login:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(13,27,62,.34);
    background: linear-gradient(135deg, #162250 0%, #2040a0 100%);
}
.btn-login:active:not(:disabled) { transform: translateY(0); box-shadow: var(--shadow-sm); }
.btn-login:disabled { opacity: .65; cursor: not-allowed; transform: none; }
.btn-login:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 2px; }

/* ── Divider + forgot link ── */
.rp-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 24px 0 0;
}
.rp-divider-line { flex: 1; height: 1px; background: var(--border); }
.rp-divider-text { font-size: 11.5px; color: #b0b8cc; font-weight: 500; white-space: nowrap; }

.rp-links {
    display: flex;
    justify-content: center;
    margin-top: 14px;
}
.rp-link {
    font-size: 13px;
    color: var(--text-sub);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    padding: 9px 16px;
    border-radius: 8px;
    transition: all .2s;
}
.rp-link:hover {
    background: var(--border);
    color: var(--navy);
}
.rp-link:focus-visible { outline: 2px solid var(--gold); outline-offset: 1px; }

/* ── Footer note ── */
.rp-footer {
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: 11px;
    color: #8d96b0;
    line-height: 1.6;
}

/* ═══════════════════════════════════════
   TABLET (≤ 1100px)
═══════════════════════════════════════ */
@media (max-width: 1100px) and (min-width: 961px) {
    .left-panel { padding: 48px 52px; }
    .lp-heading { font-size: 46px; }
    .right-panel { width: 520px; min-width: 520px; padding: 48px 40px; }
    .rp-card { max-width: 420px; }
}

/* ═══════════════════════════════════════
   MOBILE (≤ 960px)
═══════════════════════════════════════ */
@media (max-width: 960px) {
    body {
        background: linear-gradient(180deg, #eef1f8 0%, #e4e8f2 100%);
        display: block;
        overflow-x: hidden;
        overflow-y: auto;
        min-height: 100vh;
        min-height: 100dvh;
        -webkit-tap-highlight-color: transparent;
    }
    .left-panel { display: none; }

    /* ── Mobile Hero ── */
    .mobile-hero {
        display: block;
        position: relative;
        background:
            radial-gradient(ellipse at top right, rgba(200,151,42,.18) 0%, transparent 50%),
            linear-gradient(160deg, #0a1530 0%, #112050 50%, #1a2d70 100%);
        padding: 32px 24px 60px;
        padding-top: max(32px, calc(env(safe-area-inset-top) + 16px));
        overflow: hidden;
        color: #fff;
        min-height: 200px;
    }
    /* Subtle grid pattern */
    .mh-grid {
        position: absolute;
        inset: 0;
        background-image:
            linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
        background-size: 36px 36px;
        opacity: .8;
        pointer-events: none;
    }
    /* Decorative gold blobs */
    .mh-blob {
        position: absolute;
        border-radius: 50%;
        filter: blur(50px);
        pointer-events: none;
    }
    .mh-blob-1 {
        width: 260px; height: 260px;
        top: -90px; right: -70px;
        background: radial-gradient(circle, rgba(200,151,42,.45) 0%, transparent 70%);
    }
    .mh-blob-2 {
        width: 180px; height: 180px;
        bottom: -40px; left: -50px;
        background: radial-gradient(circle, rgba(42,77,176,.5) 0%, transparent 70%);
    }
    /* Bottom wave */
    .mh-wave {
        position: absolute;
        left: 0; right: 0; bottom: -1px;
        width: 100%;
        height: 36px;
        display: block;
        pointer-events: none;
    }

    /* Content */
    .mh-content {
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        gap: 14px;
    }
    .mh-logo {
        width: 60px;
        height: 60px;
        border-radius: 15px;
        background: rgba(255,255,255,.12);
        border: 1px solid rgba(255,255,255,.22);
        padding: 8px;
        object-fit: contain;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-shrink: 0;
        box-shadow: 0 8px 24px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.15);
    }
    .mh-name {
        font-size: 20px;
        font-weight: 800;
        letter-spacing: .3px;
        line-height: 1.1;
    }
    .mh-tag {
        font-size: 12px;
        color: rgba(255,255,255,.7);
        margin-top: 4px;
        font-weight: 400;
    }

    .mh-tagline {
        position: relative;
        z-index: 2;
        margin-top: 22px;
        font-size: 12px;
        color: rgba(255,255,255,.65);
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 7px 14px;
        background: rgba(255,255,255,.06);
        border: 1px solid rgba(255,255,255,.12);
        border-radius: 100px;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        font-weight: 500;
    }
    .mh-tagline i {
        color: var(--gold-light);
        font-size: 11px;
    }

    /* ── Right panel = form area ── */
    .right-panel {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        padding: 0 16px 28px;
        padding-bottom: max(28px, env(safe-area-inset-bottom));
        background: transparent;
        min-height: auto;
        display: block;
    }
    .right-panel::before { display: none; }

    /* ── Card overlapping hero (lifted up) ── */
    .rp-card {
        background: #fff;
        border-radius: 20px;
        padding: 30px 24px 24px;
        box-shadow:
            0 12px 32px rgba(13,27,62,.1),
            0 2px 6px rgba(13,27,62,.06),
            0 0 0 1px rgba(227,231,240,.5);
        margin: -32px auto 0;
        max-width: 480px;
        position: relative;
        z-index: 3;
    }

    .rp-title {
        font-size: 26px;
        line-height: 1.15;
        margin-bottom: 4px;
    }
    .rp-sub   { font-size: 13px; margin-bottom: 26px; }

    /* Bigger inputs - 16px font prevents iOS zoom on focus */
    :root { --input-h: 54px; }
    .form-group { margin-bottom: 18px; }
    .form-group label { font-size: 11px; margin-bottom: 7px; }
    .form-group input {
        font-size: 16px;
        border-radius: 12px;
    }
    .input-icon { font-size: 15px; left: 16px; }
    .form-group input { padding-left: 46px; }
    .pwd-wrap input { padding-right: 50px; }
    .pwd-toggle { right: 12px; padding: 10px; font-size: 15px; }

    .btn-login {
        height: 56px;
        font-size: 15px;
        border-radius: 12px;
        margin-top: 8px;
    }

    .form-row { margin: -2px 0 12px; }
    .rmb-check { font-size: 13.5px; }
    .rmb-box   { width: 20px; height: 20px; border-radius: 6px; }
    .rmb-box i { font-size: 11px; }

    .alert-box { font-size: 13px; padding: 13px 14px; border-radius: 12px; }

    .rp-divider { margin-top: 22px; }
    .rp-link { font-size: 13px; padding: 10px 18px; }

    .rp-footer {
        font-size: 11px;
        margin-top: 22px;
        padding-top: 18px;
        line-height: 1.65;
    }
}

/* ═══════════════════════════════════════
   SMALL MOBILE (≤ 480px)
═══════════════════════════════════════ */
@media (max-width: 480px) {
    .mobile-hero {
        padding: 26px 20px 56px;
        min-height: 180px;
    }
    .mh-logo { width: 54px; height: 54px; border-radius: 13px; padding: 7px; }
    .mh-name { font-size: 18px; }
    .mh-tag  { font-size: 11.5px; }
    .mh-tagline { margin-top: 18px; font-size: 11.5px; padding: 6px 12px; }

    .right-panel { padding: 0 12px 24px; }
    .rp-card {
        padding: 26px 20px 22px;
        border-radius: 18px;
        margin-top: -28px;
    }
    .rp-title { font-size: 23px; }
    .rp-sub   { margin-bottom: 22px; }
    .form-group { margin-bottom: 16px; }
}

/* ═══════════════════════════════════════
   EXTRA SMALL (≤ 360px) – iPhone SE, very small
═══════════════════════════════════════ */
@media (max-width: 360px) {
    .mobile-hero { padding: 22px 16px 50px; }
    .mh-content { gap: 12px; }
    .mh-logo { width: 48px; height: 48px; }
    .mh-name { font-size: 16px; }
    .rp-card { padding: 22px 16px 18px; }
    .rp-title { font-size: 21px; }
}

/* ═══════════════════════════════════════
   LANDSCAPE PHONE (height ≤ 500px)
═══════════════════════════════════════ */
@media (max-width: 960px) and (orientation: landscape) and (max-height: 500px) {
    .mobile-hero {
        padding: 14px 24px 40px;
        min-height: auto;
    }
    .mh-content { display: flex; align-items: center; }
    .mh-logo { width: 42px; height: 42px; border-radius: 11px; padding: 6px; }
    .mh-name { font-size: 16px; }
    .mh-tag { font-size: 11px; }
    .mh-tagline { display: none; }
    .mh-wave { height: 24px; }

    .right-panel { padding: 0 16px 20px; }
    .rp-card {
        padding: 22px 24px 18px;
        margin-top: -24px;
        max-width: 540px;
    }
    .rp-title { font-size: 22px; margin-bottom: 4px; }
    .rp-sub { margin-bottom: 18px; }
    .form-group { margin-bottom: 14px; }
    :root { --input-h: 48px; }
    .btn-login { height: 50px; }
    .rp-divider { margin-top: 18px; }
    .rp-footer { margin-top: 18px; padding-top: 14px; }
}

/* ═══════════════════════════════════════
   ACCESSIBILITY
═══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
    .lp-anim { opacity: 1; transform: none; }
}

@media (prefers-color-scheme: dark) {
    /* Mobile dark mode hint - subtle bg adjustment */
    @media (max-width: 960px) {
        body { background: linear-gradient(180deg, #f7f8fc 0%, #e8ecf5 100%); }
    }
}
