:root {
    --ink: #0b1016;
    --ink-soft: #121a22;
    --panel: #101820;
    --panel-2: #15202a;
    --line: rgba(126, 187, 183, .14);
    --line-strong: rgba(47, 211, 194, .28);
    --paper: #f4f6f8;
    --signal: #2fd3c2;
    --signal-deep: #1aa897;
    --amber: #f0b429;
    --muted: #6b7785;
    --muted-light: rgba(255, 255, 255, .55);
    --white: #fff;
    --danger: #ff6b6b;
    --max: 1120px;
    --display: "Unbounded", sans-serif;
    --brand: "Sora", sans-serif;
    --body: "Manrope", sans-serif;
    --bar-h: 52px;
    --nav-h: 46px;
    --radius: 4px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    min-height: 100vh;
    font-family: var(--body);
    color: var(--white);
    background:
        radial-gradient(900px 420px at 90% 0%, rgba(47, 211, 194, .1), transparent 60%),
        radial-gradient(700px 360px at 0% 30%, rgba(240, 180, 41, .06), transparent 55%),
        linear-gradient(160deg, #0b1016 0%, #0d151c 48%, #101c22 100%);
    line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
input, select { font: inherit; }

.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ——— Top bar (shared shell) ——— */
.app-bar {
    position: sticky;
    top: 0;
    z-index: 40;
    height: var(--bar-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0 clamp(16px, 4vw, 32px);
    background: rgba(8, 14, 20, .94);
    border-bottom: 1px solid rgba(47, 211, 194, .18);
    backdrop-filter: blur(12px);
}

.app-bar__brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.app-bar__mark {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    background: var(--signal);
    color: var(--ink);
    font-family: var(--display);
    font-weight: 800;
    font-size: 12px;
    flex-shrink: 0;
}

.app-bar__name {
    font-family: var(--brand);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: .01em;
    white-space: nowrap;
}

.app-bar__name .abc { color: var(--white); }
.app-bar__name .parking { color: var(--amber); }

.app-bar__meta {
    display: none;
    margin-left: 12px;
    padding: 3px 8px;
    border: 1px solid var(--line);
    color: var(--muted-light);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.app-bar[data-shell="operator"] .app-bar__meta { display: inline-flex; }

.app-bar__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 32px;
    padding: 0 14px;
    border: 1px solid transparent;
    background: transparent;
    color: var(--white);
    font-weight: 700;
    font-size: 13px;
    transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
    background: var(--signal);
    color: var(--ink);
}

.btn-primary:hover { background: #4fe0d1; }

.btn-line {
    border-color: rgba(255, 255, 255, .28);
    color: var(--white);
}

.btn-line:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .06);
}

.btn-ghost {
    border-color: rgba(255, 255, 255, .18);
    color: rgba(255, 255, 255, .82);
    font-weight: 600;
}

.btn-ghost:hover {
    border-color: var(--signal);
    color: var(--signal);
}

.btn-amber {
    background: var(--amber);
    color: var(--ink);
}

.btn-amber:hover { background: #f6c34d; }

.btn-sm { height: 30px; padding: 0 12px; font-size: 12px; }

.user-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 2px 4px 2px 2px;
}

.user-chip__avatar {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(47, 211, 194, .35), rgba(240, 180, 41, .25));
    border: 1px solid var(--line-strong);
    color: var(--white);
    font-family: var(--brand);
    font-weight: 700;
    font-size: 11px;
}

.user-chip__text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    min-width: 0;
}

.user-chip__name {
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.user-chip__role {
    font-size: 11px;
    color: var(--muted-light);
}

/* ——— Preview controls ——— */
.preview-rail {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 16px;
    padding: 10px clamp(16px, 4vw, 32px);
    background: rgba(255, 255, 255, .03);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .55);
    font-size: 12px;
}

.preview-rail strong {
    color: rgba(255, 255, 255, .78);
    font-weight: 700;
}

.preview-rail__group {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.seg {
    display: inline-flex;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(0, 0, 0, .2);
}

.seg button {
    height: 28px;
    padding: 0 12px;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, .65);
    font-size: 12px;
    font-weight: 600;
}

.seg button[aria-pressed="true"] {
    background: rgba(47, 211, 194, .16);
    color: var(--signal);
}

/* Guest / auth visibility */
[data-auth="guest"] .auth-logged,
[data-auth="logged"] .auth-guest { display: none !important; }

/* Shell views */
.shell-view { display: none; }
.shell-view.is-active { display: block; }

/* ——— Driver shell ——— */
.driver-nav {
    position: sticky;
    top: var(--bar-h);
    z-index: 35;
    height: var(--nav-h);
    display: flex;
    align-items: stretch;
    background: rgba(10, 16, 22, .92);
    border-bottom: 1px solid rgba(47, 211, 194, .14);
    backdrop-filter: blur(12px);
}

.driver-nav__inner {
    width: min(var(--max), calc(100% - 32px));
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    gap: 2px;
    overflow-x: auto;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}

.driver-nav__link {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    height: 100%;
    padding: 0 14px;
    color: rgba(255, 255, 255, .58);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .01em;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: color .18s ease, border-color .18s ease, background .18s ease;
}

.driver-nav__link:hover {
    color: var(--white);
    background: rgba(47, 211, 194, .06);
}

.driver-nav__link.is-active {
    color: var(--signal);
    border-bottom-color: var(--signal);
    background: rgba(47, 211, 194, .08);
}

.driver-nav__link:focus-visible {
    outline: 2px solid var(--signal);
    outline-offset: -2px;
}

.pager {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.pager__link {
    display: inline-flex;
    align-items: center;
    height: 34px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(0, 0, 0, .22);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: border-color .18s ease, background .18s ease, color .18s ease;
}

.pager__link:hover {
    border-color: rgba(47, 211, 194, .45);
    color: var(--signal);
}

.pager__link.is-disabled {
    opacity: .35;
    pointer-events: none;
}

.pager__meta {
    color: var(--muted-light);
    font-size: 12px;
    font-weight: 600;
}

.driver {
    width: min(var(--max), calc(100% - 32px));
    margin: 0 auto;
    padding: 28px 0 64px;
}

.driver__intro {
    display: grid;
    gap: 8px;
    margin-bottom: 28px;
    animation: rise .55s ease both;
}

.eyebrow {
    margin: 0;
    color: var(--signal);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.driver__intro h1 {
    margin: 0;
    font-family: var(--brand);
    font-size: clamp(1.55rem, 3.2vw, 2.1rem);
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 1.15;
}

.driver__intro p {
    margin: 0;
    max-width: 520px;
    color: var(--muted-light);
    font-size: 15px;
}

.driver__grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 22px;
    align-items: start;
}

@media (max-width: 900px) {
    .driver__grid { grid-template-columns: 1fr; }
    .user-chip__text { display: none; }
    .app-bar__name { font-size: 14px; }
    .driver-nav__link { padding: 0 12px; font-size: 12px; }
}

.panel {
    background: linear-gradient(180deg, rgba(21, 32, 42, .92), rgba(16, 24, 32, .96));
    border: 1px solid var(--line);
    padding: 20px 20px 18px;
    animation: rise .65s ease both;
}

.panel + .panel { margin-top: 16px; }

.panel__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.panel__head h2 {
    margin: 0;
    font-family: var(--brand);
    font-size: 1.05rem;
    font-weight: 700;
}

.panel__head span {
    color: var(--muted-light);
    font-size: 12px;
    font-weight: 600;
}

.search-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
}

.search-row input {
    height: 42px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(0, 0, 0, .25);
    color: var(--white);
    outline: none;
}

.search-row input::placeholder { color: rgba(255, 255, 255, .35); }

.search-row input:focus {
    border-color: var(--signal);
    box-shadow: 0 0 0 3px rgba(47, 211, 194, .12);
}

.hints {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.hint {
    padding: 6px 10px;
    border: 1px solid rgba(255, 255, 255, .1);
    background: rgba(255, 255, 255, .03);
    color: rgba(255, 255, 255, .7);
    font-size: 12px;
    font-weight: 600;
}

.hint:hover {
    border-color: var(--signal);
    color: var(--signal);
}

.lot-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.lot {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, .06);
}

.lot:first-child { border-top: 0; padding-top: 4px; }

.lot__title {
    margin: 0 0 4px;
    font-weight: 700;
    font-size: 15px;
}

.lot__meta {
    margin: 0;
    color: var(--muted-light);
    font-size: 13px;
}

.lot__right {
    text-align: right;
    display: grid;
    gap: 6px;
    justify-items: end;
    align-content: start;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    border: 1px solid transparent;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.badge-free {
    color: var(--signal);
    border-color: rgba(47, 211, 194, .35);
    background: rgba(47, 211, 194, .1);
}

.badge-busy {
    color: var(--amber);
    border-color: rgba(240, 180, 41, .35);
    background: rgba(240, 180, 41, .1);
}

.spots {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 8px;
}

@media (max-width: 560px) {
    .spots { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .search-row { grid-template-columns: 1fr; }
}

.spot {
    aspect-ratio: 1.15;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .1);
    background: rgba(0, 0, 0, .18);
    color: rgba(255, 255, 255, .55);
    font-size: 12px;
    font-weight: 700;
    transition: border-color .18s ease, background .18s ease, color .18s ease;
}

.spot.is-free {
    border-color: rgba(47, 211, 194, .35);
    color: var(--signal);
    background: rgba(47, 211, 194, .08);
}

.spot.is-free:hover,
.spot.is-free.is-selected {
    border-color: var(--signal);
    background: rgba(47, 211, 194, .18);
    color: #fff;
}

.spot.is-taken {
    border-color: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .28);
    background:
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 4px,
            rgba(255, 255, 255, .03) 4px,
            rgba(255, 255, 255, .03) 8px
        );
}

.session {
    position: relative;
    overflow: hidden;
}

.session::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    background: linear-gradient(180deg, var(--signal), var(--amber));
}

.session__plate {
    margin: 0 0 6px;
    font-family: var(--display);
    font-size: 1.35rem;
    letter-spacing: .04em;
}

.session__row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin: 8px 0 0;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, .06);
    font-size: 13px;
}

.session__row span { color: var(--muted-light); }
.session__row strong { font-weight: 700; }

.session__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.history {
    list-style: none;
    margin: 0;
    padding: 0;
}

.history li {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    padding: 11px 0;
    border-top: 1px solid rgba(255, 255, 255, .06);
    font-size: 13px;
}

.history li:first-child { border-top: 0; padding-top: 2px; }

.history__title { margin: 0 0 2px; font-weight: 700; }
.history__meta { margin: 0; color: var(--muted-light); font-size: 12px; }
.history__sum { font-weight: 800; color: var(--amber); }

.history__side {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.quick-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}

@media (max-width: 560px) {
    .quick-stats { grid-template-columns: 1fr; }
}

.stat {
    padding: 12px 12px 10px;
    border: 1px solid rgba(255, 255, 255, .08);
    background: rgba(0, 0, 0, .16);
}

.stat b {
    display: block;
    font-family: var(--brand);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -.02em;
}

.stat span {
    color: var(--muted-light);
    font-size: 12px;
    font-weight: 600;
}

/* ——— Operator shell demo ——— */
.operator-demo {
    width: min(var(--max), calc(100% - 32px));
    margin: 0 auto;
    padding: 28px 0 64px;
    animation: rise .55s ease both;
}

.operator-demo__note {
    margin: 0 0 18px;
    max-width: 640px;
    color: var(--muted-light);
    font-size: 14px;
}

.operator-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    min-height: 420px;
    border: 1px solid var(--line);
    background: rgba(16, 24, 32, .85);
}

@media (max-width: 760px) {
    .operator-layout { grid-template-columns: 1fr; }
}

.op-side {
    padding: 18px 14px;
    border-right: 1px solid rgba(255, 255, 255, .06);
    background: rgba(0, 0, 0, .18);
}

.op-side h2 {
    margin: 0 0 14px;
    padding: 0 8px;
    font-family: var(--brand);
    font-size: 14px;
}

.op-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 4px;
}

.op-nav a {
    display: block;
    padding: 9px 10px;
    color: rgba(255, 255, 255, .62);
    font-size: 13px;
    font-weight: 600;
}

.op-nav a.is-active,
.op-nav a:hover {
    background: rgba(47, 211, 194, .1);
    color: var(--signal);
}

.op-main {
    padding: 22px;
}

.op-main h3 {
    margin: 0 0 8px;
    font-family: var(--brand);
    font-size: 1.2rem;
}

.op-main p {
    margin: 0 0 18px;
    color: var(--muted-light);
    font-size: 14px;
}

.op-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.op-table th,
.op-table td {
    padding: 10px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    text-align: left;
}

.op-table th {
    color: var(--muted-light);
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.op-table td strong {
    font-family: var(--display);
    font-size: 12px;
    letter-spacing: .04em;
}

.footer-note {
    margin-top: auto;
    padding: 14px clamp(16px, 4vw, 32px) 22px;
    border-top: 1px solid rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .4);
    font-size: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    justify-content: space-between;
}

.footer-note strong { color: rgba(255, 255, 255, .65); }

.field-hint {
    margin: 10px 0 0;
    color: var(--muted-light);
    font-size: 12px;
}

.balance-panel {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 18px;
    align-items: end;
    margin-bottom: 16px;
    border-color: rgba(240, 180, 41, .28);
    background:
        linear-gradient(120deg, rgba(240, 180, 41, .08), transparent 42%),
        linear-gradient(180deg, rgba(21, 32, 42, .92), rgba(16, 24, 32, .96));
}

@media (max-width: 760px) {
    .balance-panel { grid-template-columns: 1fr; }
}

.balance-panel__amount {
    margin: 4px 0 8px;
    font-family: var(--display);
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    letter-spacing: .02em;
    color: var(--amber);
    line-height: 1.1;
}

.balance-panel__topup input {
    height: 42px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(0, 0, 0, .25);
    color: var(--white);
    outline: none;
}

.balance-panel__topup input:focus {
    border-color: var(--amber);
    box-shadow: 0 0 0 3px rgba(240, 180, 41, .14);
}

.car-list {
    list-style: none;
    margin: 16px 0 0;
    padding: 0;
}

.car-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, .06);
}

.car-row:first-child { border-top: 0; padding-top: 2px; }

.car-row__plate {
    margin: 0 0 2px;
    font-family: var(--display);
    font-size: 1.05rem;
    letter-spacing: .04em;
}

.car-row.is-disabled {
    opacity: .55;
}

.car-row.is-disabled .car-row__plate {
    color: var(--muted-light);
}

.car-row__status {
    display: inline-block;
    margin-left: 8px;
    padding: 2px 8px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    color: var(--muted-light);
    font-family: var(--sans, inherit);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    vertical-align: middle;
}

.car-row__comment {
    margin: 8px 0 0;
    max-width: 28rem;
}

.car-row__comment.search-row {
    grid-template-columns: 1fr auto;
}

.car-row__comment input {
    height: 34px;
    font-size: 13px;
}

.car-row__comment .btn {
    white-space: nowrap;
}

.car-row__warn {
    margin: 6px 0 0;
    max-width: 42ch;
    color: var(--amber);
    font-size: 12px;
    line-height: 1.35;
}

.car-row__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex-shrink: 0;
    padding-top: 2px;
}

.code-row {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.code-row > label {
    display: block;
    margin-bottom: 8px;
    color: var(--muted-light);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.pay-form {
    display: grid;
    gap: 10px;
}

.pay-form label {
    display: grid;
    gap: 6px;
    color: var(--muted-light);
    font-size: 12px;
    font-weight: 600;
}

.pay-form input,
.pay-form select {
    height: 40px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(0, 0, 0, .25);
    color: var(--white);
    outline: none;
    color-scheme: dark;
}

.pay-form input:focus,
.pay-form select:focus {
    border-color: var(--signal);
    box-shadow: 0 0 0 3px rgba(47, 211, 194, .12);
}

.pay-form input[type="datetime-local"] {
    min-width: 0;
    font-size: 13px;
}

.pay-form input[type="checkbox"] {
    width: 18px;
    height: 18px;
    padding: 0;
    accent-color: var(--signal);
}

.pay-form__check {
    display: flex !important;
    grid-template-columns: none;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    font-size: 13px !important;
    font-weight: 600;
    color: var(--white) !important;
}

.pay-form__dates {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

@media (max-width: 560px) {
    .pay-form__dates { grid-template-columns: 1fr; }
}

.driver__intro .add-lot-toggle__btn,
.add-lot-intro .add-lot-toggle__btn {
    width: auto;
    margin-top: 4px;
    justify-self: start;
}

.add-lot-intro {
    display: grid;
    gap: 8px;
    justify-items: start;
    margin-bottom: 12px;
}

.add-lot-toggle {
    display: grid;
    gap: 12px;
    justify-items: start;
    margin-bottom: 18px;
    max-width: 520px;
}

.add-lot-toggle > .btn {
    width: auto;
    justify-self: start;
}

.add-lot-toggle__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.flash-stack {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
}

.flash {
    padding: 10px 12px;
    border: 1px solid rgba(47, 211, 194, .28);
    background: rgba(47, 211, 194, .1);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
}

.flash-error {
    border-color: rgba(255, 107, 107, .4);
    background: rgba(255, 107, 107, .12);
}

.flash-info {
    border-color: rgba(47, 211, 194, .28);
    background: rgba(47, 211, 194, .1);
}

.empty-hint {
    margin: 12px 0 0;
    color: var(--muted-light);
    font-size: 13px;
}

.auth-shell {
    width: min(420px, calc(100% - 32px));
    margin: 0 auto;
    padding: 36px 0 64px;
}

.auth-shell h1 {
    margin: 6px 0 10px;
    font-family: var(--brand);
    font-size: clamp(1.4rem, 3vw, 1.85rem);
}

.auth-shell .panel p {
    margin: 0 0 14px;
    color: var(--muted-light);
    font-size: 14px;
}

.auth-form {
    display: grid;
    gap: 12px;
}

.auth-form label,
.auth-form .form-group label {
    display: grid;
    gap: 6px;
    color: var(--muted-light);
    font-size: 12px;
    font-weight: 600;
}

.auth-form input,
.auth-form .form-group input {
    height: 42px;
    width: 100%;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(0, 0, 0, .25);
    color: var(--white);
    outline: none;
}

.auth-form input:focus,
.auth-form .form-group input:focus {
    border-color: var(--signal);
    box-shadow: 0 0 0 3px rgba(47, 211, 194, .12);
}

.auth-form ul {
    margin: 4px 0 0;
    padding-left: 1.1rem;
    color: var(--danger);
    font-size: 12px;
}

.auth-form button {
    margin-top: 4px;
}

.auth-links {
    margin-top: 16px;
    color: var(--muted-light);
    font-size: 13px;
}

.auth-links a {
    color: var(--signal);
    font-weight: 600;
}

.auth-links a:hover { color: #4fe0d1; }

.form-error {
    color: var(--danger);
    font-size: 13px;
    font-weight: 600;
}

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
