        @import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Outfit:wght@300;400;500;600&display=swap');

        :root {
            --bg:          #f7f5f0;
            --surface:     #ffffff;
            --border:      #e2ddd6;
            --border-dark: #c8c2b8;
            --accent:      #1a1a2e;
            --accent2:     #c4973f;
            --text:        #1a1814;
            --muted:       #8a857d;
            --error:       #c0392b;
            --input-bg:    #faf9f7;
            --left-bg:     #1a1a2e;
            --left-text:   #e8e4dc;
            --left-muted:  #8a8ba0;
            --left-gold:   #c4973f;
        }

        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

        body {
            font-family: 'Outfit', sans-serif;
            background: var(--bg);
            color: var(--text);
            min-height: 100vh;
            display: grid;
            grid-template-columns: 480px 1fr;
        }

        .panel-left {
            position: relative;
            background: var(--left-bg);
            display: flex;
            flex-direction: column;
            padding: 52px 56px;
            overflow: hidden;
        }

        .panel-left::before {
            content: '';
            position: absolute;
            top: -120px; right: -120px;
            width: 420px; height: 420px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(196,151,63,.14) 0%, transparent 70%);
        }

        .panel-left::after {
            content: '';
            position: absolute;
            bottom: 80px; left: -60px;
            width: 280px; height: 280px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(196,151,63,.08) 0%, transparent 70%);
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 14px;
            z-index: 2;
        }

        .brand-icon {
            width: 40px; height: 40px;
            background: var(--left-gold);
            border-radius: 8px;
            display: flex; align-items: center; justify-content: center;
            font-family: 'Cormorant Garamond', serif;
            font-size: 20px; font-weight: 600;
            color: #fff;
        }

        .brand-name {
            font-family: 'Cormorant Garamond', serif;
            font-size: 20px; font-weight: 500;
            color: var(--left-text);
            letter-spacing: .04em;
        }

        .left-body {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            z-index: 2;
            padding-bottom: 16px;
        }

        .portal-label {
            display: inline-block;
            font-size: 10px;
            font-weight: 600;
            letter-spacing: .22em;
            text-transform: uppercase;
            color: var(--left-gold);
            margin-bottom: 20px;
            padding: 6px 12px;
            border: 1px solid rgba(196,151,63,.3);
            border-radius: 100px;
            width: fit-content;
        }

        .tagline h1 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(38px, 3.5vw, 52px);
            font-weight: 500;
            line-height: 1.12;
            color: var(--left-text);
            margin-bottom: 28px;
            letter-spacing: -.01em;
        }

        .tagline h1 em { font-style: italic; color: var(--left-gold); }

        .divider-line {
            width: 40px; height: 1px;
            background: rgba(196,151,63,.4);
            margin-bottom: 24px;
        }

        .tagline-desc {
            font-size: 14px;
            line-height: 1.75;
            color: var(--left-muted);
            max-width: 320px;
        }

        .stats-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1px;
            background: rgba(255,255,255,.06);
            border-radius: 12px;
            overflow: hidden;
            margin-top: 52px;
        }

        .stat {
            background: rgba(255,255,255,.04);
            padding: 18px 16px;
            text-align: center;
        }

        .stat-num {
            font-family: 'Cormorant Garamond', serif;
            font-size: 26px; font-weight: 600;
            color: var(--left-gold);
            display: block;
            line-height: 1;
            margin-bottom: 4px;
        }

        .stat-label {
            font-size: 10px;
            color: var(--left-muted);
            letter-spacing: .1em;
            text-transform: uppercase;
        }

        .panel-right {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 60px 40px;
            background: var(--bg);
            position: relative;
        }

        .panel-right::before {
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 1px; height: 100%;
            background: linear-gradient(to bottom, transparent 5%, var(--border) 30%, var(--border) 70%, transparent 95%);
        }

        .form-wrap {
            width: 100%;
            max-width: 400px;
            animation: rise .55s cubic-bezier(.22,1,.36,1) both;
        }

        @keyframes rise {
            from { opacity: 0; transform: translateY(20px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        .form-header { margin-bottom: 44px; }

        .form-header h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 36px; font-weight: 500;
            color: var(--text);
            margin-bottom: 8px;
            letter-spacing: -.01em;
        }

        .form-header p {
            font-size: 14px;
            color: var(--muted);
            font-weight: 300;
        }

        .field { margin-bottom: 22px; }

        .field label {
            display: block;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: .1em;
            text-transform: uppercase;
            color: var(--muted);
            margin-bottom: 8px;
        }

        .field input {
            width: 100%;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 13px 16px;
            font-family: 'Outfit', sans-serif;
            font-size: 15px;
            font-weight: 400;
            color: var(--text);
            outline: none;
            transition: border-color .2s, box-shadow .2s;
        }

        .field input:hover { border-color: var(--border-dark); }

        .field input:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(26,26,46,.07);
        }

        .field input::placeholder { color: #c4c0b8; }

        .field-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 28px;
        }

        .remember {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--muted);
            cursor: pointer;
        }

        .remember input { width: auto; accent-color: var(--accent); }

        .forgot {
            font-size: 13px;
            color: var(--accent2);
            text-decoration: none;
            font-weight: 500;
        }

        .btn-submit {
            width: 100%;
            padding: 15px;
            background: var(--accent);
            color: #fff;
            border: none;
            border-radius: 10px;
            font-family: 'Outfit', sans-serif;
            font-size: 15px;
            font-weight: 500;
            letter-spacing: .03em;
            cursor: pointer;
            transition: background .2s, box-shadow .2s;
        }

        .btn-submit:hover {
            background: #252540;
            box-shadow: 0 4px 20px rgba(26,26,46,.2);
        }

        .footer-note {
            text-align: center;
            font-size: 12.5px;
            color: var(--muted);
            margin-top: 36px;
            font-weight: 300;
            line-height: 1.6;
        }

        .footer-note span { color: var(--accent2); font-weight: 500; }

        @media (max-width: 900px) {
            body { grid-template-columns: 1fr; }
            .panel-left { display: none; }
            .panel-right { padding: 48px 24px; background: var(--surface); }
        }
