/* ============================================================
   Gram Panchayat Financial Accounting — Form No. 6
   Modern, professional & friendly UI design system
   ============================================================ */

:root {
    --sidebar-width: 268px;

    /* Brand palette — deep govt indigo + saffron accent */
    --primary: #1b4965;
    --primary-dark: #14364a;
    --primary-light: #2c6e8f;
    --accent: #f4a124;
    --accent-soft: #fff4e0;

    /* Semantic */
    --income: #1a9d6e;
    --income-soft: #e7f7f0;
    --expense: #e2475c;
    --expense-soft: #fdeef0;
    --balance: #2f6fed;
    --balance-soft: #eaf1ff;

    /* Neutrals */
    --bg: #eef2f7;
    --surface: #ffffff;
    --ink: #1f2d3d;
    --ink-soft: #5a6b7b;
    --line: #e3e9f0;

    --radius: 16px;
    --radius-sm: 10px;
    --shadow-sm: 0 1px 2px rgba(20, 40, 70, .06), 0 1px 3px rgba(20, 40, 70, .05);
    --shadow: 0 6px 18px rgba(20, 40, 70, .08);
    --shadow-lg: 0 14px 40px rgba(20, 40, 70, .14);
}

* { box-sizing: border-box; }

body {
    font-family: 'Noto Sans Devanagari', 'Mukta', 'Segoe UI', Tahoma, sans-serif;
    background:
        radial-gradient(1200px 500px at 100% -10%, rgba(47, 111, 237, .06), transparent 60%),
        radial-gradient(900px 400px at -10% 110%, rgba(244, 161, 36, .07), transparent 55%),
        var(--bg);
    color: var(--ink);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    letter-spacing: .1px;
}

:lang(mr), .mr-text, .sidebar, .section-title, .stat-card, .table {
    font-family: 'Noto Sans Devanagari', 'Mukta', sans-serif;
}

a { color: var(--primary-light); }

.app-wrapper { display: flex; min-height: 100vh; }

/* ── Sidebar ─────────────────────────────────────────────── */
.sidebar {
    width: var(--sidebar-width);
    background: linear-gradient(185deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    position: fixed;
    inset: 0 auto 0 0;
    height: 100vh;
    overflow-y: auto;
    z-index: 1030;
    transition: transform .3s ease;
    display: flex;
    flex-direction: column;
}

.sidebar::-webkit-scrollbar { width: 6px; }
.sidebar::-webkit-scrollbar-thumb { background: rgba(255,255,255,.18); border-radius: 6px; }

.sidebar-brand {
    padding: 1.4rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    align-items: center;
    gap: .75rem;
}

.sidebar-brand .brand-logo {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent), #f6c45a);
    color: var(--primary-dark);
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    box-shadow: 0 6px 16px rgba(244, 161, 36, .35);
}

.sidebar-brand h1 {
    font-size: .98rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.35;
}

.sidebar-brand small {
    color: #ffd98a;
    font-size: .68rem;
    font-weight: 500;
    letter-spacing: .3px;
}

.sidebar .nav { padding: .75rem .75rem; gap: 4px; }

.sidebar .nav-link {
    color: rgba(255, 255, 255, .82);
    padding: .7rem .85rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: .85rem;
    font-size: .92rem;
    font-weight: 600;
    line-height: 1.2;
    transition: all .18s ease;
    position: relative;
}

.sidebar .nav-link small {
    font-weight: 400;
    font-size: .68rem;
    opacity: .7;
}

.sidebar .nav-link .nav-ico {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: rgba(255, 255, 255, .1);
    display: grid;
    place-items: center;
    font-size: 1.05rem;
    transition: all .18s ease;
}

.sidebar .nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, .08);
}

.sidebar .nav-link:hover .nav-ico { background: rgba(255, 255, 255, .2); }

.sidebar .nav-link.active {
    color: var(--primary-dark);
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .18);
}

.sidebar .nav-link.active .nav-ico {
    background: var(--accent);
    color: #fff;
}

.sidebar .nav-link.active small { opacity: .85; }

.sidebar-gp {
    margin: auto .75rem 1rem;
    padding: .9rem 1rem;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 14px;
}

.sidebar-gp .gp-label { color: rgba(255,255,255,.6); font-size: .68rem; text-transform: uppercase; letter-spacing: .5px; }
.sidebar-gp .gp-name { font-weight: 700; font-size: .95rem; display: block; }
.sidebar-gp .gp-fy { color: #ffd98a; font-size: .78rem; display: block; }
.sidebar-gp .gp-scheme { color: #9fe0c4; font-size: .78rem; display: block; margin-top: 2px; }

/* ── Scheme switcher (top bar) ───────────────────────────── */
.scheme-switcher-btn {
    display: flex;
    align-items: center;
    gap: .6rem;
    background: var(--accent-soft);
    border: 1px solid #f6dca6;
    color: #8a5e10;
    border-radius: 999px;
    padding: .4rem .9rem;
    font-weight: 600;
    text-align: left;
    max-width: 320px;
}
.scheme-switcher-btn:hover, .scheme-switcher-btn:focus { background: #ffeccb; color: #8a5e10; }
.scheme-switcher-btn > i { font-size: 1.15rem; flex: 0 0 auto; }
.scheme-switcher-text { display: flex; flex-direction: column; line-height: 1.1; overflow: hidden; }
.scheme-switcher-text small { font-size: .62rem; text-transform: uppercase; letter-spacing: .4px; opacity: .8; }
.scheme-switcher-text strong { font-size: .9rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 230px; }
.scheme-switcher-menu { min-width: 280px; border-radius: 12px; box-shadow: var(--shadow-lg); border: 1px solid var(--line); }
.scheme-switcher-menu .dropdown-item { border-radius: 8px; padding: .5rem .8rem; white-space: normal; }
.scheme-switcher-menu .dropdown-item.active { background: var(--primary); color: #fff; }
.scheme-switcher-menu .dropdown-item.active i { color: #fff; }

/* ── Main content ────────────────────────────────────────── */
.main-content {
    margin-left: var(--sidebar-width);
    flex: 1;
    padding: 1.5rem 1.75rem 2.5rem;
    width: calc(100% - var(--sidebar-width));
}

.top-bar {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: .9rem 1.25rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.top-bar .page-name { font-weight: 700; font-size: 1.05rem; color: var(--primary); }

.top-bar .govt-tag {
    font-size: .76rem;
    color: var(--ink-soft);
    background: var(--accent-soft);
    border: 1px solid #f6dca6;
    color: #9a6a12;
    padding: .35rem .7rem;
    border-radius: 999px;
    font-weight: 600;
    white-space: nowrap;
}

/* ── Cards ───────────────────────────────────────────────── */
.content-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.1rem;
    padding-bottom: .6rem;
    border-bottom: 2px solid var(--line);
    display: flex;
    align-items: center;
    gap: .5rem;
}

.section-title::before {
    content: "";
    width: 6px;
    height: 20px;
    border-radius: 6px;
    background: linear-gradient(var(--accent), #f6c45a);
    display: inline-block;
}

/* ── Welcome banner (dashboard) ──────────────────────────── */
.welcome-banner {
    background: linear-gradient(120deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #fff;
    border-radius: var(--radius);
    padding: 1.6rem 1.75rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.welcome-banner::after {
    content: "\F1AF";
    font-family: "bootstrap-icons";
    position: absolute;
    right: 1rem;
    bottom: -1.5rem;
    font-size: 8rem;
    opacity: .08;
}

.welcome-banner h2 { font-weight: 800; font-size: 1.5rem; margin: 0 0 .25rem; }
.welcome-banner p { margin: 0; opacity: .9; font-size: .95rem; }
.welcome-banner .badge-soft {
    display: inline-block;
    margin-top: .85rem;
    background: rgba(255,255,255,.16);
    border: 1px solid rgba(255,255,255,.25);
    padding: .35rem .85rem;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 600;
}

/* ── Stat cards ──────────────────────────────────────────── */
.stat-card {
    border: none;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
    color: #fff;
    position: relative;
}

.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.stat-card .card-body { padding: 1.4rem 1.5rem; position: relative; z-index: 1; }

.stat-card .stat-ico {
    position: absolute;
    right: 1.1rem;
    top: 1.1rem;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .22);
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    z-index: 1;
}

.stat-card .stat-label { font-size: .85rem; font-weight: 600; opacity: .92; margin-bottom: .35rem; }
.stat-card .stat-value { font-size: 1.8rem; font-weight: 800; line-height: 1.1; }
.stat-card .stat-sub { font-size: .76rem; opacity: .85; margin-top: .3rem; }

.stat-card.is-income  { background: linear-gradient(135deg, #17a673, #0f8a5f); }
.stat-card.is-expense { background: linear-gradient(135deg, #ef5a6e, #d6304a); }
.stat-card.is-balance { background: linear-gradient(135deg, #3b7bf0, #2456c8); }

/* plain (non-gradient) stat card used elsewhere */
.stat-card.plain {
    background: var(--surface);
    color: var(--ink);
    border: 1px solid var(--line);
}

.income-text { color: var(--income); }
.expense-text { color: var(--expense); }
.balance-text { color: var(--balance); }

/* ── Tables ──────────────────────────────────────────────── */
.table { color: var(--ink); }

.table thead th {
    background: #f5f8fc;
    color: var(--primary);
    font-weight: 700;
    border-bottom: 2px solid var(--line);
}

.table-hover tbody tr:hover { background: #f3f8ff; }

.form6-year-table th,
.form6-year-table td { white-space: nowrap; font-size: .86rem; }

.form6-year-table tfoot td { background: #f5f8fc; }

.form6-year-table .year-summary-row:hover,
.year-summary-row:hover {
    background-color: var(--balance-soft) !important;
    cursor: pointer;
}

.trial-balance-table th,
.trial-balance-table td { vertical-align: middle; }

.trial-total-row { background: #f5f8fc; font-weight: 700; }

.form6-summary-table th.form6-label {
    width: 55%;
    background: #f7f9fc;
    font-weight: 600;
}
.form6-summary-table td.form6-amount { font-size: 1.05rem; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn { font-weight: 600; border-radius: 10px; }
.btn-lg { border-radius: 12px; }

.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 6px 14px rgba(27, 73, 101, .25);
}
.btn-primary:hover, .btn-primary:focus {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent), #f6b94a);
    border: none;
    color: #4a3206;
    box-shadow: 0 6px 14px rgba(244, 161, 36, .3);
}
.btn-accent:hover { filter: brightness(.97); color: #4a3206; }

.btn-outline-primary { color: var(--primary); border-color: var(--primary); }
.btn-outline-primary:hover { background: var(--primary); border-color: var(--primary); }

/* ── Forms ───────────────────────────────────────────────── */
.form-label { font-weight: 600; color: var(--ink); margin-bottom: .35rem; font-size: .9rem; }
.form-control, .form-select {
    border-radius: 9px;
    border-color: #d7e0ea;
    padding: .45rem .75rem;
    font-size: .92rem;
}
.form-control:focus, .form-select:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 .2rem rgba(44, 110, 143, .15);
}
.form-text { color: var(--ink-soft); }

.field-group { position: relative; }
.field-icon-label { display: flex; align-items: center; gap: .45rem; }

/* ── Monthly Entries Page ────────────────────────────────── */
.monthly-page .content-card { margin-bottom: 1.25rem; }

.monthly-page-title { font-size: 1.2rem; font-weight: 800; color: var(--primary); }

.monthly-toolbar { border-top: 4px solid var(--accent); }

.month-picker { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 1rem; }

.month-picker-btn {
    border: 1.5px solid #d7e0ea;
    background: #fff;
    color: var(--ink-soft);
    padding: 5px 13px;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .15s ease;
}
.month-picker-btn:hover { border-color: var(--primary-light); color: var(--primary); background: #f3f8fc; }
.month-picker-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 6px 14px rgba(27, 73, 101, .25);
}

.monthly-quick-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }

.quick-stat {
    padding: 10px 14px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid transparent;
    position: relative;
}
.quick-stat.income  { background: var(--income-soft); border-color: #bce8d6; color: #0f5132; }
.quick-stat.expense { background: var(--expense-soft); border-color: #f6c4cc; color: #842029; }
.quick-stat.balance { background: var(--balance-soft); border-color: #c4d8ff; color: #1a3f8f; }

.quick-stat-label { display: block; font-size: .72rem; font-weight: 700; opacity: .85; margin-bottom: 3px; }
.quick-stat-value { display: block; font-size: 1.05rem; font-weight: 800; }

.monthly-alert { margin-bottom: .75rem; }
.monthly-alert:empty { display: none; }

/* Entry panel */
.entry-panel { border-top: 4px solid var(--income); }

.entry-type-tabs { display: flex; gap: 8px; margin-bottom: 1rem; }

.entry-tab {
    flex: 1;
    border: 2px solid #e3e9f0;
    background: #f7f9fc;
    padding: 9px 16px;
    border-radius: 10px;
    font-size: .9rem;
    font-weight: 700;
    color: var(--ink-soft);
    cursor: pointer;
    transition: all .15s ease;
}
.entry-tab:first-child.active { background: var(--income); border-color: var(--income); color: #fff; box-shadow: 0 6px 14px rgba(26,157,110,.3); }
.entry-tab:last-child.active  { background: var(--expense); border-color: var(--expense); color: #fff; box-shadow: 0 6px 14px rgba(226,71,92,.3); }
.entry-tab:not(.active):hover { border-color: #b9c4d1; color: var(--ink); }

.amount-input { font-size: 1rem !important; font-weight: 700; }

/* April opening balance */
.opening-balance-panel {
    border-top: 4px solid var(--balance);
    background: linear-gradient(135deg, #f6faff 0%, #fff 60%);
}
.opening-balance-title { font-size: 1.05rem; font-weight: 800; color: var(--primary); }
.opening-balance-hint { font-size: .8rem; color: var(--ink-soft); padding-top: 6px; }

/* Ledger panel */
.ledger-panel { padding: 0; overflow: hidden; }
.ledger-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.1rem 1.4rem .25rem;
}
.ledger-header .section-title { margin-bottom: 0; border: none; padding: 0; }
.ledger-header .section-title::before { display: none; }

.ledger-tabs { padding: 0 1.4rem; border-bottom: 1px solid var(--line); }
.ledger-tabs .nav-link {
    font-weight: 700; font-size: .92rem; color: var(--ink-soft);
    padding: 11px 18px; border: none;
}
.ledger-tabs .nav-link.active {
    color: var(--primary); background: transparent;
    border-bottom: 3px solid var(--primary);
}

.ledger-total-bar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 12px 1.4rem; font-size: .92rem; font-weight: 700;
}
.ledger-total-bar.income  { background: var(--income-soft); color: #0f5132; }
.ledger-total-bar.expense { background: var(--expense-soft); color: #842029; }
.ledger-total-bar strong { font-size: 1.15rem; }

.ledger-table-wrap { max-height: 440px; overflow-y: auto; }
.ledger-table thead th {
    position: sticky; top: 0; background: #f5f8fc; color: var(--primary);
    font-size: .82rem; font-weight: 700; z-index: 1; border-bottom: 2px solid var(--line);
}
.ledger-table tbody td { font-size: .9rem; vertical-align: middle; }
.ledger-head { max-width: 280px; word-break: break-word; }
.ledger-empty { text-align: center; padding: 2.75rem 1rem !important; color: #9aa7b5; }
.ledger-empty i { font-size: 2.25rem; display: block; margin-bottom: 10px; opacity: .6; }

/* Summary collapse */
.summary-collapse-panel { padding: 0; overflow: hidden; }
.summary-toggle-btn {
    width: 100%; border: none; background: #f5f8fc;
    padding: 14px 1.4rem; display: flex; justify-content: space-between; align-items: center;
    font-weight: 700; font-size: .95rem; color: var(--primary); cursor: pointer;
}
.summary-toggle-btn:hover { background: #eaf1f8; }
.summary-collapse-body { padding: 1.1rem 1.4rem 1.4rem; border-top: 1px solid var(--line); }

/* ── Alerts ──────────────────────────────────────────────── */
.alert { border-radius: 12px; border: none; box-shadow: var(--shadow-sm); }
.alert-success { background: var(--income-soft); color: #0f5132; }
.alert-danger { background: var(--expense-soft); color: #842029; }

/* ── Badges ──────────────────────────────────────────────── */
.badge { font-weight: 600; }

/* ── Responsive ──────────────────────────────────────────── */
.sidebar-toggle { display: none; }

@media (max-width: 991.98px) {
    .sidebar { transform: translateX(-100%); box-shadow: var(--shadow-lg); }
    .sidebar.show { transform: translateX(0); }
    .main-content { margin-left: 0; width: 100%; padding: 1rem; }
    .sidebar-toggle { display: inline-flex; }
    .sidebar-overlay { display: none; position: fixed; inset: 0; background: rgba(15, 30, 50, .5); z-index: 1025; backdrop-filter: blur(2px); }
    .sidebar-overlay.show { display: block; }
}

@media (max-width: 768px) {
    .monthly-quick-stats { grid-template-columns: 1fr; }
    .entry-type-tabs { flex-direction: column; }
    .welcome-banner h2 { font-size: 1.25rem; }
}

/* ── Head manager (Master Data) ──────────────────────────── */
.head-manager-card { max-width: 900px; }

.head-tabs .nav-link {
    font-weight: 700;
    font-size: .9rem;
    color: var(--ink-soft);
    border: none;
    padding: 10px 18px;
}
.head-tabs .nav-link.active {
    color: var(--primary);
    border-bottom: 3px solid var(--primary);
    background: transparent;
}

.head-table thead th {
    background: #f5f8fc;
    color: var(--primary);
    font-size: .82rem;
    font-weight: 700;
}
.head-table tbody td { font-size: .9rem; vertical-align: middle; }
.head-table .head-edit-input { max-width: 100%; }

/* ── Scheme manager (Master Data) ────────────────────────── */
.scheme-manager-card { max-width: 900px; border-top: 4px solid var(--accent); }
.scheme-table thead th {
    background: #f5f8fc;
    color: var(--primary);
    font-size: .82rem;
    font-weight: 700;
}
.scheme-table tbody td { font-size: .9rem; vertical-align: middle; }

/* ── Public auth pages ───────────────────────────────────── */
.auth-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 1.5rem;
}
.auth-hero {
    width: min(980px, 100%);
    text-align: center;
}
.auth-hero-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 26px;
    box-shadow: var(--shadow-lg);
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
}
.auth-hero-card::after {
    content: "";
    position: absolute;
    inset: auto -80px -100px auto;
    width: 260px;
    height: 260px;
    background: var(--accent-soft);
    border-radius: 50%;
    z-index: 0;
}
.auth-hero-card > * { position: relative; z-index: 1; }
.auth-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: var(--accent-soft);
    border: 1px solid #f6dca6;
    color: #8a5e10;
    padding: .45rem 1rem;
    border-radius: 999px;
    font-weight: 700;
    margin-bottom: 1.25rem;
}
.auth-hero h1 {
    color: var(--primary);
    font-weight: 800;
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin-bottom: 1rem;
}
.auth-hero p {
    color: var(--ink-soft);
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.05rem;
}
.auth-card {
    width: min(430px, 100%);
    margin: 0 auto;
}
.auth-card-wide {
    width: min(820px, 100%);
}
.brand-logo.mx-auto {
    display: grid;
}

.auth-demo-box {
    text-align: left;
    background: linear-gradient(180deg, #f8fbff 0%, #fff 100%);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 1.35rem 1.25rem;
}
.auth-demo-head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-weight: 800;
    color: var(--primary);
    font-size: 1.05rem;
    margin-bottom: .35rem;
}
.auth-demo-head i { font-size: 1.2rem; }
.auth-demo-lead {
    text-align: center;
    color: var(--ink-soft);
    font-size: .92rem;
    margin-bottom: 1rem;
}
.auth-demo-card {
    height: 100%;
    border-radius: 14px;
    padding: 1rem;
    border: 1px solid var(--line);
    background: #fff;
}
.auth-demo-card-admin { border-top: 3px solid var(--primary); }
.auth-demo-card-gp { border-top: 3px solid #198754; }
.auth-demo-card-title {
    display: flex;
    align-items: center;
    gap: .45rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: .35rem;
}
.auth-demo-card-desc {
    color: var(--ink-soft);
    font-size: .84rem;
    margin-bottom: .85rem;
}
.auth-demo-creds {
    display: grid;
    gap: .55rem;
    margin: 0;
}
.auth-demo-creds div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    background: #f6f8fb;
    border: 1px solid #e8edf3;
    border-radius: 10px;
    padding: .45rem .65rem;
}
.auth-demo-creds dt {
    margin: 0;
    font-size: .78rem;
    font-weight: 600;
    color: var(--ink-soft);
}
.auth-demo-creds dd {
    margin: 0;
    font-size: .88rem;
    font-weight: 700;
}
.auth-demo-creds code {
    background: transparent;
    color: var(--primary);
    font-size: .88rem;
    padding: 0;
}
.auth-demo-card-gp .auth-demo-creds code { color: #146c43; }
.auth-demo-steps {
    margin: 1rem 0 0;
    padding-left: 1.2rem;
    color: var(--ink-soft);
    font-size: .86rem;
}
.auth-demo-steps li + li { margin-top: .35rem; }

