
:root {
    --navy: #0f1f3d;
    --gold: #c8972a;
    --gold-light: #f0c35a;
    --cream: #faf8f3;
    --surface: #f2f0eb;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Be Vietnam Pro', sans-serif;
    min-height: 100vh;
    background: var(--navy);
    display: flex;
    overflow: hidden;
}

/* LEFT PANEL */
.left-panel {
    flex: 1;
    background: linear-gradient(145deg, #0f1f3d 0%, #1a3a6e 60%, #0d2a5c 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 60px 70px;
    position: relative;
    overflow: hidden;
}
.left-panel::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200,151,42,.15) 0%, transparent 70%);
}
.left-panel::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200,151,42,.08) 0%, transparent 70%);
}
.grid-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(200,151,42,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200,151,42,.04) 1px, transparent 1px);
    background-size: 48px 48px;
}
.lp-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}
.lp-logo-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--gold);
    display: grid;
    place-items: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 700;
    color: white;
    box-shadow: 0 8px 24px rgba(200,151,42,.4);
}
.lp-logo-text .t1 {
    font-size: 18px;
    font-weight: 800;
    color: white;
}
.lp-logo-text .t2 {
    font-size: 11px;
    color: rgba(255,255,255,.5);
    font-weight: 400;
    margin-top: 1px;
}

.lp-heading {
    position: relative;
    z-index: 2;
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-weight: 600;
    color: white;
    line-height: 1.15;
    margin-bottom: 20px;
}
.lp-heading .gold {
    color: var(--gold-light);
}
.lp-sub {
    position: relative;
    z-index: 2;
    font-size: 14px;
    color: rgba(255,255,255,.55);
    line-height: 1.7;
    max-width: 380px;
    margin-bottom: 48px;
}
.lp-features {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.lp-feat {
    display: flex;
    align-items: center;
    gap: 12px;
}
.lp-feat-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: rgba(200,151,42,.18);
    display: grid;
    place-items: center;
    color: var(--gold-light);
    font-size: 13px;
    flex-shrink: 0;
}
.lp-feat-text {
    font-size: 13px;
    color: rgba(255,255,255,.7);
    font-weight: 500;
}

/* RIGHT PANEL */
.right-panel {
    width: 480px;
    flex-shrink: 0;
    background: var(--cream);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 48px;
}
.rp-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
    text-align: center;
}
.rp-sub {
    font-size: 13px;
    color: #7a8499;
    text-align: center;
    margin-bottom: 36px;
}

/* ROLE SELECTOR */
.role-selector {
    width: 100%;
    margin-bottom: 28px;
}
.role-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 10px;
}
.role-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}
.role-card {
    border: 2px solid #e2ddd3;
    border-radius: 12px;
    padding: 12px 8px;
    text-align: center;
    cursor: pointer;
    transition: all .2s;
    background: white;
}
.role-card:hover {
    border-color: var(--gold);
}
.role-card.selected {
    border-color: var(--gold);
    background: #fef9f0;
}
.role-card .rc-icon {
    font-size: 20px;
    margin-bottom: 6px;
}
.role-card .rc-name {
    font-size: 11px;
    font-weight: 700;
    color: var(--navy);
}
.role-card .rc-sub {
    font-size: 10px;
    color: #8a8a8a;
    margin-top: 2px;
}

.form-group {
    width: 100%;
    margin-bottom: 16px;
}
.form-group label {
    font-size: 12px;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: .6px;
    margin-bottom: 7px;
    display: block;
}
.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2ddd3;
    border-radius: 10px;
    font-size: 14px;
    background: white;
    font-family: 'Be Vietnam Pro', sans-serif;
    color: var(--navy);
    transition: border .2s, box-shadow .2s;
}
.form-group input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(200,151,42,.1);
}

.btn-login {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    background: var(--navy);
    color: white;
    border: none;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Be Vietnam Pro', sans-serif;
    cursor: pointer;
    transition: all .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
}
.btn-login:hover {
    background: #1a3a6e;
    box-shadow: 0 8px 24px rgba(15,31,61,.3);
    transform: translateY(-1px);
}

.demo-note {
    margin-top: 24px;
    text-align: center;
    font-size: 12px;
    color: #aaa;
    padding: 12px 16px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e8e4dc;
    width: 100%;
}
.demo-note strong {
    color: var(--navy);
}

@media (max-width: 900px) {
    .left-panel {
        display: none;
    }
    .right-panel {
        width: 100%;
        padding: 36px 28px;
    }
}
@media (max-width: 480px) {
    .right-panel {
        padding: 28px 18px;
    }
    .rp-title {
        font-size: 24px;
    }
    .role-cards {
        grid-template-columns: 1fr 1fr;
    }
    .role-card:last-child {
        grid-column: span 2;
        max-width: 180px;
        margin: 0 auto;
    }
    .btn-login {
        padding: 13px;
    }
}
