/* =========================================================
   SISTEM PSB — STYLE UTAMA (Halaman Publik)
   Palet: Navy akademik + Emas aksen kelulusan
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --navy-950: #0b1324;
    --navy-900: #0f1b33;
    --navy-800: #16264a;
    --navy-700: #1d3361;
    --navy-600: #294378;
    --navy-100: #e7ecf7;

    --gold-500: #c79a3f;
    --gold-400: #d9b15c;
    --gold-100: #f7ecd3;

    --ink: #14181f;
    --ink-soft: #4a5163;
    --paper: #faf9f6;
    --paper-card: #ffffff;
    --line: #e3e1da;

    --green-600: #1f7a4d;
    --green-100: #e3f5ea;
    --red-600: #b3412c;
    --red-100: #fbe9e4;
    --yellow-700: #97650f;
    --yellow-100: #faf0d8;
    --gray-600: #6b7080;
    --gray-100: #eef0f3;

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --shadow-sm: 0 1px 2px rgba(15, 27, 51, 0.06);
    --shadow-md: 0 6px 20px rgba(15, 27, 51, 0.10);
    --shadow-lg: 0 20px 50px rgba(15, 27, 51, 0.18);

    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--navy-950);
    line-height: 1.2;
}

/* ---------------- NAVBAR ---------------- */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250, 249, 246, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}
.navbar-brand .logo-mark {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--navy-900);
    color: var(--gold-400);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}
.navbar-brand .school-name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 17px;
    color: var(--navy-950);
    line-height: 1.2;
}
.navbar-brand .school-tagline {
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold-500);
    font-weight: 600;
}
.navbar-menu {
    display: flex;
    align-items: center;
    gap: 36px;
}
.navbar-menu a {
    font-size: 14.5px;
    font-weight: 500;
    color: var(--ink-soft);
    transition: color 0.2s;
}
.navbar-menu a:hover { color: var(--navy-900); }
.navbar-actions { display: flex; align-items: center; gap: 12px; }

/* ---------------- BUTTONS ---------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14.5px;
    cursor: pointer;
    border: 1.5px solid transparent;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.btn-primary { background: var(--navy-900); color: #fff; }
.btn-primary:hover { background: var(--navy-700); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-gold { background: var(--gold-500); color: var(--navy-950); }
.btn-gold:hover { background: var(--gold-400); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; border-color: var(--navy-900); color: var(--navy-900); }
.btn-outline:hover { background: var(--navy-900); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink-soft); }
.btn-ghost:hover { color: var(--navy-900); }
.btn-block { width: 100%; }
.btn-lg { padding: 15px 32px; font-size: 15.5px; }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }
.btn svg { width: 18px; height: 18px; }

/* ---------------- HERO ---------------- */
.hero {
    position: relative;
    background: linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 55%, var(--navy-800) 100%);
    color: #fff;
    overflow: hidden;
    padding: 88px 0 110px;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 85% 20%, rgba(199, 154, 63, 0.18), transparent 45%),
        radial-gradient(circle at 10% 90%, rgba(199, 154, 63, 0.10), transparent 40%);
    pointer-events: none;
}
.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    border: 1px solid rgba(217, 177, 92, 0.4);
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--gold-400);
    margin-bottom: 24px;
}
.hero-eyebrow .dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--gold-400);
}
.hero h1 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}
.hero h1 em {
    font-style: italic;
    color: var(--gold-400);
}
.hero p.lead {
    font-size: 17px;
    color: rgba(255,255,255,0.72);
    max-width: 480px;
    margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; margin-bottom: 44px; }
.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stats .stat-num {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    color: var(--gold-400);
}
.hero-stats .stat-label {
    font-size: 12.5px;
    color: rgba(255,255,255,0.6);
    margin-top: 2px;
}

/* Hero Card (info gelombang) */
.hero-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    padding: 32px;
    backdrop-filter: blur(6px);
}
.hero-card .card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}
.hero-card .badge-open {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(31, 122, 77, 0.2);
    color: #5cd596;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}
.hero-card .badge-open .dot { width: 6px; height: 6px; border-radius: 50%; background: #5cd596; }
.hero-card h3 { color: #fff; font-size: 20px; margin-bottom: 4px; }
.hero-card .gelombang-label { color: rgba(255,255,255,0.55); font-size: 13px; }
.hero-card .timeline-item {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hero-card .timeline-item:last-child { border-bottom: none; }
.hero-card .timeline-icon {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: rgba(217, 177, 92, 0.15);
    color: var(--gold-400);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.hero-card .timeline-icon svg { width: 18px; height: 18px; }
.hero-card .timeline-text .t-label { font-size: 12px; color: rgba(255,255,255,0.5); }
.hero-card .timeline-text .t-value { font-size: 14.5px; font-weight: 600; color: #fff; margin-top: 2px; }

/* ---------------- SECTION GENERIC ---------------- */
.section { padding: 90px 0; }
.section-alt { background: var(--paper-card); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-header { max-width: 600px; margin: 0 auto 56px; text-align: center; }
.section-eyebrow {
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: 12px;
    display: block;
}
.section-header h2 { font-size: 34px; margin-bottom: 14px; }
.section-header p { color: var(--ink-soft); font-size: 15.5px; }

/* ---------------- ALUR PENDAFTARAN (Steps) ---------------- */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    position: relative;
}
.step-card {
    background: var(--paper-card);
    border: 1px solid var(--line);
    padding: 28px 24px;
    position: relative;
}
.step-card:first-child { border-radius: var(--radius-md) 0 0 var(--radius-md); }
.step-card:last-child { border-radius: 0 var(--radius-md) var(--radius-md) 0; }
.step-num {
    font-family: var(--font-display);
    font-size: 30px;
    color: var(--gold-500);
    font-weight: 600;
    margin-bottom: 14px;
}
.step-card h4 { font-size: 16px; margin-bottom: 8px; }
.step-card p { font-size: 13.5px; color: var(--ink-soft); }

/* ---------------- JALUR / JENJANG CARDS ---------------- */
.jalur-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.jalur-card {
    background: var(--paper-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    transition: all 0.25s ease;
}
.jalur-card:hover {
    border-color: var(--gold-500);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.jalur-card .icon-box {
    width: 52px; height: 52px;
    border-radius: 12px;
    background: var(--navy-100);
    color: var(--navy-800);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.jalur-card h4 { font-size: 18px; margin-bottom: 10px; }
.jalur-card p { font-size: 14px; color: var(--ink-soft); margin-bottom: 16px; }
.jalur-card .syarat-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13.5px;
    color: var(--ink-soft);
    padding: 5px 0;
}
.jalur-card .syarat-list svg { width: 15px; height: 15px; color: var(--green-600); flex-shrink: 0; margin-top: 3px; }

/* ---------------- PENGUMUMAN ---------------- */
.pengumuman-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.pengumuman-card {
    background: var(--paper-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 26px;
    display: flex;
    gap: 18px;
}
.pengumuman-date {
    flex-shrink: 0;
    width: 58px;
    text-align: center;
    background: var(--navy-900);
    color: #fff;
    border-radius: var(--radius-sm);
    padding: 10px 0;
}
.pengumuman-date .d-num { font-family: var(--font-display); font-size: 20px; font-weight: 700; }
.pengumuman-date .d-mon { font-size: 10px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--gold-400); }
.pengumuman-card h4 { font-size: 15.5px; margin-bottom: 6px; }
.pengumuman-card p { font-size: 13.5px; color: var(--ink-soft); }

/* ---------------- CTA BAND ---------------- */
.cta-band {
    background: var(--navy-950);
    border-radius: var(--radius-lg);
    padding: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.cta-band::after {
    content: '';
    position: absolute;
    right: -60px; top: -60px;
    width: 220px; height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(217,177,92,0.25), transparent 70%);
}
.cta-band h3 { color: #fff; font-size: 26px; margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,0.65); font-size: 14.5px; }

/* ---------------- FOOTER ---------------- */
.footer {
    background: var(--navy-950);
    color: rgba(255,255,255,0.6);
    padding: 64px 0 28px;
    margin-top: 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { display: flex; gap: 12px; margin-bottom: 16px; }
.footer h5 {
    color: #fff;
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 0.02em;
}
.footer li { margin-bottom: 10px; font-size: 13.5px; }
.footer a:hover { color: var(--gold-400); }
.footer-bottom {
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    font-size: 12.5px;
}

/* ---------------- FORM (Pendaftaran / Login) ---------------- */
.auth-wrapper {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.auth-side {
    background: linear-gradient(165deg, var(--navy-950), var(--navy-800));
    color: #fff;
    padding: 56px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}
.auth-side::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 80% 80%, rgba(199,154,63,0.18), transparent 50%);
}
.auth-side .quote { font-family: var(--font-display); font-size: 24px; line-height: 1.4; position: relative; max-width: 420px; }
.auth-side .quote span { color: var(--gold-400); }
.auth-form-side {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 56px;
    background: var(--paper);
}
.auth-box { width: 100%; max-width: 440px; }
.auth-box h2 { font-size: 28px; margin-bottom: 8px; }
.auth-box .sub { color: var(--ink-soft); font-size: 14.5px; margin-bottom: 32px; }

.form-card {
    background: var(--paper-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 36px;
}
.form-section-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy-900);
    padding-bottom: 12px;
    margin-bottom: 22px;
    border-bottom: 2px solid var(--gold-100);
    display: flex;
    align-items: center;
    gap: 8px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-row.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 7px;
}
.form-group label .req { color: var(--red-600); }
.form-group .hint { font-size: 12px; color: var(--gray-600); margin-top: 5px; }
.form-control, select.form-control, textarea.form-control {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--ink);
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-control:focus {
    outline: none;
    border-color: var(--navy-700);
    box-shadow: 0 0 0 3px rgba(29, 51, 97, 0.1);
}
textarea.form-control { resize: vertical; min-height: 90px; }
.input-icon-wrap { position: relative; }
.input-icon-wrap svg {
    position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
    width: 18px; height: 18px; color: var(--gray-600);
}
.input-icon-wrap .form-control { padding-left: 42px; }
.toggle-pass {
    position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
    cursor: pointer; color: var(--gray-600); background: none; border: none;
}

.file-upload-box {
    border: 1.5px dashed var(--line);
    border-radius: var(--radius-sm);
    padding: 20px;
    text-align: center;
    background: var(--paper);
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}
.file-upload-box:hover { border-color: var(--gold-500); background: var(--gold-100); }
.file-upload-box svg { width: 26px; height: 26px; color: var(--gray-600); margin: 0 auto 8px; }
.file-upload-box .f-title { font-size: 13.5px; font-weight: 600; color: var(--ink); }
.file-upload-box .f-hint { font-size: 11.5px; color: var(--gray-600); margin-top: 3px; }
.file-upload-box input[type=file] { display: none; }
.file-name-preview { font-size: 12.5px; color: var(--green-600); font-weight: 600; margin-top: 8px; }

.form-divider { display: flex; align-items: center; gap: 12px; margin: 24px 0; color: var(--gray-600); font-size: 13px; }
.form-divider::before, .form-divider::after { content: ''; flex: 1; height: 1px; background: var(--line); }

.form-progress { display: flex; align-items: center; margin-bottom: 36px; }
.form-progress .fp-step { display: flex; align-items: center; gap: 10px; }
.form-progress .fp-circle {
    width: 34px; height: 34px; border-radius: 50%;
    background: var(--gray-100); color: var(--gray-600);
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 700;
    border: 2px solid transparent;
}
.form-progress .fp-circle.active { background: var(--navy-900); color: #fff; }
.form-progress .fp-circle.done { background: var(--green-600); color: #fff; }
.form-progress .fp-label { font-size: 13px; font-weight: 600; color: var(--gray-600); }
.form-progress .fp-label.active { color: var(--navy-900); }
.form-progress .fp-line { flex: 1; height: 2px; background: var(--line); margin: 0 14px; }

/* ---------------- ALERTS ---------------- */
.alert {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    position: relative;
}
.alert svg { width: 18px; height: 18px; flex-shrink: 0; }
.alert-success { background: var(--green-100); color: var(--green-600); }
.alert-danger { background: var(--red-100); color: var(--red-600); }
.alert-close { margin-left: auto; background: none; border: none; cursor: pointer; font-size: 18px; color: inherit; opacity: 0.6; }

/* ---------------- BADGES ---------------- */
.badge { display: inline-flex; align-items: center; gap: 5px; padding: 5px 12px; border-radius: 999px; font-size: 12px; font-weight: 700; }
.badge-green { background: var(--green-100); color: var(--green-600); }
.badge-red { background: var(--red-100); color: var(--red-600); }
.badge-yellow { background: var(--yellow-100); color: var(--yellow-700); }
.badge-gray { background: var(--gray-100); color: var(--gray-600); }

/* ---------------- DASHBOARD SISWA ---------------- */
.dash-header {
    background: var(--navy-950);
    color: #fff;
    padding: 36px 0;
}
.dash-header .container { display: flex; justify-content: space-between; align-items: center; }
.dash-user { display: flex; align-items: center; gap: 14px; }
.dash-user .avatar {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--gold-500); color: var(--navy-950);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 17px;
}
.dash-user .u-name { font-weight: 600; font-size: 15.5px; }
.dash-user .u-no { font-size: 12.5px; color: rgba(255,255,255,0.55); }

.status-tracker {
    background: var(--paper-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 36px;
    margin-bottom: 28px;
}
.tracker-row { display: flex; align-items: flex-start; justify-content: space-between; }
.tracker-step { flex: 1; text-align: center; position: relative; }
.tracker-step::before {
    content: '';
    position: absolute;
    top: 19px; left: -50%; width: 100%; height: 2px;
    background: var(--line); z-index: 0;
}
.tracker-step:first-child::before { display: none; }
.tracker-step.done::before { background: var(--green-600); }
.tracker-circle {
    width: 40px; height: 40px; border-radius: 50%;
    background: #fff; border: 2px solid var(--line);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 10px; position: relative; z-index: 1;
    color: var(--gray-600);
}
.tracker-step.done .tracker-circle { background: var(--green-600); border-color: var(--green-600); color: #fff; }
.tracker-step.active .tracker-circle { background: var(--navy-900); border-color: var(--navy-900); color: #fff; }
.tracker-circle svg { width: 18px; height: 18px; }
.tracker-step .ts-label { font-size: 13px; font-weight: 600; color: var(--ink); }
.tracker-step .ts-sub { font-size: 11.5px; color: var(--gray-600); margin-top: 2px; }

.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.info-card {
    background: var(--paper-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 24px;
}
.info-card .ic-label { font-size: 12.5px; color: var(--gray-600); margin-bottom: 6px; }
.info-card .ic-value { font-size: 20px; font-weight: 700; font-family: var(--font-display); color: var(--navy-950); }

.detail-card {
    background: var(--paper-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 24px;
}
.detail-card h3 { font-size: 17px; margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.detail-row { display: grid; grid-template-columns: 180px 1fr; padding: 10px 0; font-size: 14px; border-bottom: 1px solid #f1f0eb; }
.detail-row:last-child { border-bottom: none; }
.detail-row .dr-label { color: var(--gray-600); }
.detail-row .dr-value { font-weight: 600; color: var(--ink); }

/* Bukti Pendaftaran (Cetak) */
.bukti-card {
    background: #fff;
    border: 2px solid var(--navy-900);
    border-radius: var(--radius-md);
    padding: 40px;
    max-width: 700px;
    margin: 0 auto;
}
.bukti-header { text-align: center; padding-bottom: 20px; border-bottom: 2px solid var(--navy-900); margin-bottom: 24px; }
.bukti-header h2 { font-size: 18px; text-transform: uppercase; letter-spacing: 0.05em; }
.bukti-no { text-align: center; margin-bottom: 24px; }
.bukti-no .no-val { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--navy-900); letter-spacing: 0.03em; }

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 980px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 36px; }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .step-card:nth-child(2) { border-radius: 0 var(--radius-md) 0 0; }
    .step-card:nth-child(3) { border-radius: 0 0 0 var(--radius-md); }
    .step-card:first-child { border-radius: var(--radius-md) 0 0 0; }
    .jalur-grid { grid-template-columns: 1fr; }
    .pengumuman-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .auth-wrapper { grid-template-columns: 1fr; }
    .auth-side { display: none; }
    .form-row, .form-row.cols-3 { grid-template-columns: 1fr; }
    .info-grid { grid-template-columns: 1fr; }
    .navbar-menu { display: none; }
}
