*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
    --navy: #0C1A35; --navy2: #142548; --accent: #C9A84C;
    --white: #fff; --bg: #F5F4F0; --text: #111110;
    --mid: #4B5563; --muted: #9CA3AF; --border: #E5E7EB;
}
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); min-height: 100vh; }

/* ── NAV ── */
.nav { display: flex; align-items: center; justify-content: space-between; padding: 0 48px; height: 64px; background: var(--navy); }
.nav-logo img { height: 44px; width: auto; }
.nav-actions { display: flex; gap: 10px; align-items: center; }
.nav-link { font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.6); text-decoration: none; padding: 7px 14px; border-radius: 8px; transition: color .2s, background .2s; }
.nav-link:hover { color: #fff; background: rgba(255,255,255,.08); }

/* ── PAGE ── */
.page { display: grid; grid-template-columns: 1fr 1fr; min-height: calc(100vh - 64px); }

/* ── LEFT — value prop ── */
.page-left {
    background: linear-gradient(150deg, var(--navy) 0%, var(--navy2) 60%, #0E1E3A 100%);
    padding: 72px 56px;
    display: flex; flex-direction: column; justify-content: center;
}
.page-left-tag {
    font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 28px;
}
.page-left h1 {
    font-size: 2.1rem; font-weight: 800; line-height: 1.2; color: #fff;
    letter-spacing: -.03em; margin-bottom: 16px;
}
.page-left-sub { font-size: 1rem; color: rgba(255,255,255,.55); line-height: 1.6; margin-bottom: 48px; }
.benefit { display: flex; gap: 18px; align-items: flex-start; margin-bottom: 28px; }
.benefit-icon {
    width: 44px; height: 44px; border-radius: 12px;
    background: rgba(201,168,76,.15); border: 1px solid rgba(201,168,76,.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; flex-shrink: 0;
}
.benefit-text strong { display: block; font-size: .9rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.benefit-text span { font-size: .8rem; color: rgba(255,255,255,.5); line-height: 1.5; }
.page-left-login { margin-top: 40px; font-size: .82rem; color: rgba(255,255,255,.45); }
.page-left-login a { color: var(--accent); text-decoration: none; font-weight: 600; }
.page-left-login a:hover { text-decoration: underline; }

/* ── RIGHT — form ── */
.page-right {
    background: #fff;
    padding: 72px 56px;
    display: flex; flex-direction: column; justify-content: center;
}
.form-title { font-size: 1.5rem; font-weight: 800; letter-spacing: -.02em; margin-bottom: 6px; }
.form-sub { font-size: .85rem; color: var(--muted); margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: .75rem; font-weight: 600; color: var(--mid); margin-bottom: 6px; letter-spacing: .04em; text-transform: uppercase; }
.form-input {
    width: 100%; padding: 12px 14px; border: 1.5px solid var(--border);
    border-radius: 10px; font-size: .9rem; font-family: inherit;
    background: #fff; color: var(--text);
    transition: border-color .2s, box-shadow .2s; outline: none;
}
.form-input:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(12,26,53,.08); }
.btn-submit {
    width: 100%; padding: 14px; background: var(--navy); color: #fff;
    border: none; border-radius: 10px; font-size: .95rem; font-weight: 700;
    cursor: pointer; margin-top: 8px; transition: background .2s, transform .1s;
    font-family: inherit; letter-spacing: .01em;
}
.btn-submit:hover { background: var(--navy2); }
.btn-submit:active { transform: scale(.99); }
.form-error {
    background: #FEF2F2; border: 1px solid #FECACA; color: #DC2626;
    border-radius: 8px; padding: 12px 14px; font-size: .84rem; margin-bottom: 20px;
}
.form-cgu { font-size: .75rem; color: var(--muted); margin-top: 14px; text-align: center; line-height: 1.5; }
.form-cgu a { color: var(--mid); }
.form-sep { margin: 20px 0; text-align: center; font-size: .78rem; color: var(--muted); position: relative; }
.form-sep::before, .form-sep::after { content: ''; position: absolute; top: 50%; width: 40%; height: 1px; background: var(--border); }
.form-sep::before { left: 0; } .form-sep::after { right: 0; }

/* ── MOBILE BENEFITS (visible only on mobile, inside form col) ── */
.mobile-benefits { display: none; }

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
    .page { grid-template-columns: 1fr; }
    .page-left { display: none; }
    .page-right { padding: 24px 20px 48px; order: 1; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .nav { padding: 0 20px; }

    .mobile-benefits {
        display: flex; flex-direction: column; gap: 10px;
        background: var(--navy); border-radius: 10px;
        padding: 16px; margin-bottom: 24px;
    }
    .mobile-benefit-item {
        display: flex; align-items: center; gap: 12px;
    }
    .mobile-benefit-icon {
        width: 32px; height: 32px; border-radius: 8px; flex-shrink: 0;
        background: rgba(201,168,76,.15); border: 1px solid rgba(201,168,76,.2);
        display: flex; align-items: center; justify-content: center; font-size: .85rem;
    }
    .mobile-benefit-text { font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.85); line-height: 1.4; }
    .mobile-benefit-text span { display: block; font-weight: 400; color: rgba(255,255,255,.45); font-size: .72rem; }
}
