/*
 * ═══════════════════════════════════════════════════════
 *  PWA Theme — Mitteldeutsche Kulturreise
 *  Forest Green × Gold
 *
 *  Loaded in layouts/payqra.blade.php AFTER styles.css and custom.css.
 *  This file is NOT processed by Vite or any build tool.
 *  DO NOT edit public/css/custom.css for PWA theme — it is a
 *  build-compiled file and will be overwritten on every build.
 * ═══════════════════════════════════════════════════════
 */

/* ─── 0. Typography system ───────────────────────────── */
/*
 * Display font: Cormorant Garamond — for large headings only
 * Body/UI font: Jost — for all interface text, labels, buttons
 * Matches the landing page typography exactly.
 */
body {
    font-family: 'Jost', 'DM Sans', sans-serif;
}

/* Display font for page-level headings */
h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    letter-spacing: -0.01em;
}

/* h5/h6 stay in Jost — too small for a thin serif */
h5, h6 {
    font-family: 'Jost', 'DM Sans', sans-serif;
}

/* Page title blocks used across all PWA pages */
.header-style-2 .title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.header-style-2 .sub-title {
    font-family: 'Jost', 'DM Sans', sans-serif;
    font-weight: 400;
}

/* Buttons — Jost with slight letter-spacing for readability */
.tf-btn {
    font-family: 'Jost', 'DM Sans', sans-serif;
    font-weight: 500;
    letter-spacing: 0.04em;
}

/* Navigation labels */
.inner-bar-item .text-small,
.inner-bar-item span {
    font-family: 'Jost', 'DM Sans', sans-serif;
    font-weight: 500;
}

/* Form elements */
input, select, textarea, label, .form-label, .label-input {
    font-family: 'Jost', 'DM Sans', sans-serif;
}

/* Card names / item titles in transaction/achievement lists */
.box-transaction-item .name,
.name.fw-6 {
    font-family: 'Jost', 'DM Sans', sans-serif;
    font-weight: 600;
}


:root {
    /* Backgrounds */
    --u-bg:          #0e1a0e;
    --u-bg-card:     #152515;
    --u-bg-surface:  #1a2e1a;

    /* Gold — primary accent */
    --u-gold:        #c4943a;
    --u-gold-hover:  #d4a84a;
    --u-gold-muted:  rgba(196, 148, 58, 0.18);

    /* Text */
    --u-ivory:       #f8f4eb;
    --u-ivory-60:    rgba(248, 244, 235, 0.6);
    --u-ivory-30:    rgba(248, 244, 235, 0.3);
    --u-ivory-10:    rgba(248, 244, 235, 0.1);

    /* Status */
    --u-success:     #5a9e72;
    --u-error:       #b85555;
    --u-stone:       #8c7d6e;

    /* ── Override PayQra base variables ── */
    --primary:       #c4943a;
    --primary-50:    rgba(196, 148, 58, 0.18);
    --primary-100:   rgba(196, 148, 58, 0.18);
    --primary-200:   rgba(196, 148, 58, 0.18);
    --primary-300:   rgba(196, 148, 58, 0.35);
    --primary-400:   #152515;
    --primary-400-2: #d4a84a;
    --bg:            #1a2e1a;
    --bg-2:          rgba(248, 244, 235, 0.1);
    --bg-3:          #0e1a0e;
    --bg-4:          #0e1a0e;
    --bg-5:          rgba(248, 244, 235, 0.1);
    --bg-6:          #1a2e1a;
    --success:       #5a9e72;
    --secondary:     #5a9e72;
    --secondary-100: rgba(90, 158, 114, 0.15);
    --line:          rgba(248, 244, 235, 0.1);
    --line-2:        rgba(248, 244, 235, 0.1);
    --greyscale:     #f8f4eb;
    --greyscale-50:  rgba(248, 244, 235, 0.05);
    --greyscale-100: rgba(248, 244, 235, 0.08);
    --greyscale-200: rgba(248, 244, 235, 0.12);
    --greyscale-300: rgba(248, 244, 235, 0.25);
    --greyscale-400: rgba(248, 244, 235, 0.4);
    --greyscale-500: rgba(248, 244, 235, 0.55);
    --color-text:    rgba(248, 244, 235, 0.6);
    --color-icon:    #f8f4eb;
    --headline:      #f8f4eb;
    --headline-2:    #f8f4eb;
    --color-title:   #f8f4eb;
    --sub-paragraph: rgba(248, 244, 235, 0.6);
    --paragraph:     rgba(248, 244, 235, 0.6);
    --paragraph-2:   rgba(248, 244, 235, 0.6);
    --primary-base:  #0e1a0e;
    --primary-base-300: rgba(248, 244, 235, 0.4);
    --error:         #b85555;
    --warning:       #c4943a;
    --amber:         #c4943a;
    --slate-200:     rgba(248, 244, 235, 0.15);
    --grey-2:        rgba(248, 244, 235, 0.2);
    --grey-4:        rgba(248, 244, 235, 0.4);
    --grey-50:       rgba(248, 244, 235, 0.05);
    --grey-100:      rgba(248, 244, 235, 0.08);
    --grey-200:      rgba(248, 244, 235, 0.12);
    --grey-500:      rgba(248, 244, 235, 0.5);
}

/* ─── 2. Body & Base ─────────────────────────────────── */
body,
body.bg-4 {
    background-color: var(--u-bg) !important;
    color: var(--u-ivory);
}

.wrap {
    background: var(--u-bg);
}

/* ─── 3. Typography ──────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    color: var(--u-ivory);
}

.color-grayscale {
    color: var(--u-ivory) !important;
}

.fw-5, .fw-6, .fw-7 {
    color: inherit;
}

/* ─── 4. Cards ───────────────────────────────────────── */
.tf-card-item {
    padding: 20px;
    border-radius: 16px;
    background: var(--u-bg-card);
    border: 1px solid var(--u-ivory-10);
    color: var(--u-ivory);
}

.card-payment,
.card-payment.v2,
.card-payment.bg-color-white {
    background: var(--u-bg-card) !important;
    border-color: var(--u-ivory-10) !important;
    color: var(--u-ivory);
}

.card-ui {
    background: var(--u-bg-card);
    border: 1px solid var(--u-ivory-10);
    color: var(--u-ivory);
}

.card-ui .card-ui-header {
    color: var(--u-ivory);
}

.card-balance {
    background: var(--u-bg-surface) !important;
    border: 1px solid var(--u-ivory-10);
    padding: 20px;
}

.card-balance.bg-success {
    background: rgba(90, 158, 114, 0.2) !important;
}

.card-balance.bg-accent {
    background: var(--u-gold-muted) !important;
    border-color: rgba(196, 148, 58, 0.3) !important;
}

/* ─── 5. Buttons ─────────────────────────────────────── */
.tf-btn {
    font-weight: 500;
    letter-spacing: 0.04em;
}

.tf-btn.primary {
    background: var(--u-gold) !important;
    color: var(--u-bg) !important;
    border-color: var(--u-gold) !important;
}

.tf-btn.primary:hover,
.tf-btn.primary:focus {
    background: var(--u-gold-hover) !important;
    border-color: var(--u-gold-hover) !important;
}

.tf-btn.accent {
    background: var(--u-bg-surface) !important;
    color: var(--u-gold) !important;
    border: 1px solid var(--u-gold) !important;
}

.tf-btn.accent:hover,
.tf-btn.accent:focus {
    background: var(--u-gold-muted) !important;
}

.tf-btn.secondary {
    background: transparent !important;
    color: var(--u-ivory-60) !important;
    border: 1px solid var(--u-ivory-10) !important;
}

.tf-btn.secondary:hover,
.tf-btn.secondary:focus {
    background: var(--u-ivory-10) !important;
    color: var(--u-ivory) !important;
}

/* ─── 6. Footer Navigation ───────────────────────────── */
.menubar-footer {
    background: var(--u-bg-surface) !important;
    border-top: 1px solid var(--u-ivory-10) !important;
    box-shadow: 0 -1px 0 var(--u-ivory-10);
}

/* Hide the purple wave background image */
.menubar-footer .image-bg {
    display: none !important;
}

.inner-bar-item {
    color: var(--u-ivory-30) !important;
    text-decoration: none;
}

.inner-bar-item span {
    color: inherit !important;
}

.inner-bar-item.active,
.inner-bar-item:hover {
    color: var(--u-gold) !important;
}

/* Scan (centre) button */
.inner-bar-item.v2 {
    background: var(--u-gold) !important;
    color: var(--u-bg) !important;
    border: none !important;
}

.inner-bar-item.v2:hover,
.inner-bar-item.v2.active {
    background: var(--u-gold-hover) !important;
}

/* ─── 7. Header ──────────────────────────────────────── */
.header-v3,
.bg-color-bg {
    background-color: var(--u-bg-surface) !important;
    border-bottom: 1px solid var(--u-ivory-10);
}

/* Default avatar circle — shown until user has a profile image */
.header-user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--u-gold-muted);
    border: 1px solid var(--u-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 15px;
    color: var(--u-gold);
}

/* Prevent long names from breaking or overflowing the header */
.header-user-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 130px;
}

/* ─── 8. Page title block ────────────────────────────── */
.header-style-2 {
    margin-bottom: 24px;
}

.header-style-2 .title {
    color: var(--u-ivory);
    margin-bottom: 4px;
}

.header-style-2 .sub-title {
    color: var(--u-ivory-60);
    font-size: 14px;
}

/* ─── 9. Lists & Transaction Items ──────────────────── */
.box-transaction-item {
    padding: 12px 16px;
    border-radius: 12px;
    background: var(--u-bg-card);
    border: 1px solid var(--u-ivory-10);
    border-bottom: 1px solid var(--u-ivory-10);
    color: var(--u-ivory);
}

.box-transaction-item .name {
    color: var(--u-ivory) !important;
}

.box-transaction-item .price {
    color: var(--u-gold) !important;
}

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

.list li + li {
    margin-top: 8px;
}

/* ─── 10. Profile settings list ─────────────────────── */
.list-setting-item {
    background: var(--u-bg-card);
    border: 1px solid var(--u-ivory-10);
    border-radius: 16px;
    overflow: hidden;
}

.list-setting-item .setting-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    color: var(--u-ivory);
    text-decoration: none;
    border-bottom: 1px solid var(--u-ivory-10);
    transition: background 0.15s;
}

.list-setting-item .setting-item:last-child {
    border-bottom: none;
}

.list-setting-item .setting-item:hover {
    background: var(--u-ivory-10);
}

.list-setting-item span.setting-item {
    cursor: default;
}

/* ─── Language flag picker ───────────────────────────── */
.lang-flag-picker {
    background: var(--u-bg-card);
    border: 1px solid var(--u-ivory-10);
    border-radius: 16px;
    padding: 16px 20px;
}

.lang-flag-picker__label {
    font-family: 'Jost', 'DM Sans', sans-serif;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(248, 244, 235, 0.45);
    margin: 0 0 14px;
}

.lang-flag-picker__row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.lang-flag-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 34px;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid transparent;
    opacity: 0.4;
    transition: opacity 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    cursor: pointer;
    background: transparent;
    padding: 0;
    flex-shrink: 0;
}

.lang-flag-btn:hover {
    opacity: 0.8;
    border-color: rgba(196, 148, 58, 0.4);
}

.lang-flag-btn--active {
    opacity: 1 !important;
    border-color: var(--u-gold) !important;
    box-shadow: 0 0 0 1px var(--u-gold);
    cursor: default;
}

.lang-flag-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 3px;
}

/* ─── 11. Form Elements ──────────────────────────────── */
.from-login,
.wg-form {
    background: var(--u-bg-card) !important;
    color: var(--u-ivory);
}

input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="range"]),
select,
textarea {
    background: var(--u-bg-surface) !important;
    border-color: var(--u-ivory-10) !important;
    color: var(--u-ivory) !important;
}

input::placeholder,
textarea::placeholder {
    color: var(--u-ivory-30) !important;
}

.label-input,
.form-label,
label {
    color: var(--u-ivory-60) !important;
}

.fieldset-radio {
    border-color: var(--u-ivory-10) !important;
    background: var(--u-bg-card) !important;
}

.fieldset-radio label {
    color: var(--u-ivory-60) !important;
}

.tf-check-rounded.style-primary:checked {
    accent-color: var(--u-gold);
}

/* Gold coin reward token in quiz result card */
.reward-coin {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: radial-gradient(circle at 36% 34%, #f0d070, #c4943a 58%, #9a7020);
    border: 2px solid rgba(255, 220, 90, 0.45);
    box-shadow:
        0 0 18px rgba(196, 148, 58, 0.5),
        0 2px 8px rgba(0, 0, 0, 0.35),
        inset 0 1px 2px rgba(255, 240, 160, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}


.num-box-template {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--u-gold-muted);
    border-radius: 8px;
    font-size: 13px;
}

.quiz-options-template .fieldset-radio {
    border-radius: 12px;
    padding: 14px 16px;
    border: 1.5px solid var(--u-ivory-10);
    background: var(--u-bg-surface) !important;
    transition: border-color 0.2s, background 0.2s;
    cursor: pointer;
    user-select: none;
    position: relative;
}

/* Hide the radio dot — the whole block is the interactive element */
.quiz-options-template .fieldset-radio input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    margin: 0;
    pointer-events: none;
}

/* Full-block label — flex row with text left, indicator right */
.quiz-options-template .fieldset-radio label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    margin: 0;
    padding: 0;
    font-size: 15px;
    line-height: 1.5;
    color: var(--u-ivory-60) !important;
    transition: color 0.2s;
}

/* Custom radio indicator on the right */
.quiz-options-template .fieldset-radio label::after {
    content: '';
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1.5px solid var(--u-ivory-30);
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

/* Selected state */
.quiz-options-template .fieldset-radio:has(input:checked) {
    border-color: var(--u-gold);
    background: var(--u-gold-muted) !important;
}

.quiz-options-template .fieldset-radio:has(input:checked) label {
    color: var(--u-ivory) !important;
}

.quiz-options-template .fieldset-radio:has(input:checked) label::after {
    border-color: var(--u-gold);
    background: var(--u-gold);
    box-shadow: inset 0 0 0 3px var(--u-bg-surface);
}

.content-answer .rounded-12 {
    background: var(--u-bg-surface) !important;
    border-radius: 12px !important;
    padding: 12px 16px !important;
}

.content-answer .border-light {
    border-color: var(--u-ivory-10) !important;
}

.content-answer .border-primary {
    border-color: var(--u-gold) !important;
}

/* ─── 13. Scan page ──────────────────────────────────── */
.wg-qr-code-scan {
    padding: 16px !important;
}

.scan-manual-form {
    margin-top: 24px;
    margin-bottom: 32px;
}

.scan-manual-form .from-login {
    padding: 24px 20px !important;
    border-radius: 16px;
}

.manual-code-input {
    text-align: center;
    font-size: 20px;
    letter-spacing: 5px;
}

/* ─── 14. Icon boxes ─────────────────────────────────── */
.icon-box-template {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--u-bg-surface);
    flex-shrink: 0;
    font-size: 22px;
}

.icon-box {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(248, 244, 235, 0.08);
    flex-shrink: 0;
    font-size: 20px;
}

/* ─── 15. Progress bars ──────────────────────────────── */
.tf-progressbar {
    height: 4px;
    background: var(--u-ivory-10);
    border-radius: 2px;
    overflow: hidden;
}

.tf-progressbar .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--u-gold), var(--u-gold-hover));
    border-radius: 2px;
    transition: width 0.4s ease;
}

/* ─── 16. Preloader ──────────────────────────────────── */
.preload-container {
    background: var(--u-bg) !important;
}

.spinner-circle.success .spinner-child {
    background-color: var(--u-gold) !important;
}

/* ─── 17. Modals ─────────────────────────────────────── */
.modal-content,
.modal-body {
    background: var(--u-bg-card) !important;
    color: var(--u-ivory);
}

.modal-header {
    background: var(--u-bg-surface) !important;
    border-bottom-color: var(--u-ivory-10) !important;
}

.modal-footer {
    background: var(--u-bg-surface) !important;
    border-top-color: var(--u-ivory-10) !important;
}

/* header-2 pattern — used as sticky header inside modals/panels */
.header-2 {
    background: var(--u-bg-surface);
    border-bottom: 1px solid var(--u-ivory-10);
}

.header-2 .title {
    color: var(--u-ivory) !important;
    font-family: 'Jost', 'DM Sans', sans-serif;
}

.header-2 .tf-btn-arrow,
.header-2 .tf-btn-arrow i {
    color: var(--u-ivory) !important;
    font-size: 16px;
}

.header-2 .btn-right i,
.header-2 .nav-add i {
    color: var(--u-ivory) !important;
}

/* ─── 18. Alerts & badges ────────────────────────────── */
.alert-danger {
    background: rgba(184, 85, 85, 0.12) !important;
    border-color: rgba(184, 85, 85, 0.3) !important;
    color: var(--u-ivory) !important;
}

.badge {
    color: var(--u-ivory) !important;
}

/* ─── 19. Divider ────────────────────────────────────── */
.divider {
    color: var(--u-ivory-30);
}

.divider::before,
.divider::after {
    background: var(--u-ivory-10) !important;
}

/* ─── 20. Workspace switch specific ─────────────────── */
.bg-warning-subtle {
    background: rgba(196, 148, 58, 0.15) !important;
}

.bg-primary-subtle {
    background: var(--u-gold-muted) !important;
}

/* ─── 21. Content padding layout ────────────────────── */
.pwa-content-main  { padding-bottom: 125px; }
.pwa-content-guest { padding-top: 40px; padding-bottom: 100px; }

/* ─── 22. Utility overrides ──────────────────────────── */
.text-primary  { color: var(--u-gold) !important; }
.text-success  { color: var(--u-success) !important; }
.text-accent   { color: var(--u-gold) !important; }
.text-danger   { color: var(--u-error) !important; }
.text-warning  { color: var(--u-gold) !important; }
.text-white    { color: var(--u-ivory) !important; }

.bg-color-primary-200 { background-color: var(--u-gold-muted) !important; }
.bg-color-success-200 { background-color: rgba(90, 158, 114, 0.15) !important; }
.bg-color-greyscale   { background-color: var(--u-bg-surface) !important; }
.bg-color-white       { background-color: var(--u-bg-card) !important; }

.border-primary { border-color: var(--u-gold) !important; }

/* ─── 23. Missing spacing scale entries ──────────────── */
.mb-32  { margin-bottom: 32px !important; }
.mt-32  { margin-top:    32px !important; }
.mt-24  { margin-top:    24px !important; }
.mb-100 { margin-bottom: 100px !important; }
.p-12   { padding:       12px !important; }
.p-16   { padding:       16px !important; }
.rounded-12 { border-radius: 12px !important; }

/* ─── 25. Map canvas ─────────────────────────────────── */
.map-canvas-wrapper {
    border-radius: 20px;
    overflow: hidden;
}

#map {
    height: calc(100dvh - 400px);
    min-height: 280px;
    width: 100%;
    border-radius: 20px;
}

.shadow-sm {
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4) !important;
}

/* ─── 26. Login guest screen ─────────────────────────── */
.login-hero__icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--u-gold-muted);
    border: 1px solid rgba(196, 148, 58, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.login-hero__logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(1.1);
}

.login-hero__title {
    color: var(--u-ivory);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 26px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.login-hero__description {
    color: var(--u-ivory-60);
    font-size: 14px;
    line-height: 1.65;
    max-width: 300px;
    margin: 0 auto;
}

.login-card {
    background: var(--u-bg-card);
    border: 1px solid var(--u-ivory-10);
    border-radius: 20px;
    padding: 28px 24px 32px;
}

/* Hero description — highlight email address in gold */
.login-hero__description strong {
    color: var(--u-gold);
    font-weight: 600;
}

/* ─── 27. Auth verify screen ─────────────────────────── */

/* Large code entry field */
.code-input {
    display: block;
    width: 100%;
    text-align: center;
    font-family: 'Courier New', Courier, monospace;
    font-size: 34px;
    letter-spacing: 14px;
    text-indent: 14px; /* compensate tracking on last char */
    padding: 18px 16px;
    border-radius: 14px;
    background: var(--u-bg-surface) !important;
    border: 1.5px solid var(--u-ivory-30) !important;
    color: var(--u-ivory) !important;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.code-input:focus {
    border-color: var(--u-gold) !important;
    box-shadow: 0 0 0 3px rgba(196, 148, 58, 0.15);
    outline: none;
}

.code-input::placeholder {
    color: var(--u-ivory-30) !important;
    letter-spacing: 8px;
    text-indent: 8px;
}

/* Theme-styled auth alerts */
.auth-alert {
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.5;
    font-family: 'Jost', 'DM Sans', sans-serif;
}

.auth-alert--success {
    background: rgba(90, 158, 114, 0.12);
    border: 1px solid rgba(90, 158, 114, 0.3);
    color: var(--u-success);
}

.auth-alert--error {
    background: rgba(184, 85, 85, 0.12);
    border: 1px solid rgba(184, 85, 85, 0.3);
    color: var(--u-error);
}

/* Secondary action row */
.auth-secondary-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.auth-action-link {
    background: none;
    border: none;
    padding: 0;
    font-size: 13px;
    font-family: 'Jost', 'DM Sans', sans-serif;
    color: var(--u-ivory-60);
    cursor: pointer;
    text-decoration: none;
    transition: color 0.15s;
    line-height: 1.4;
}

.auth-action-link:hover {
    color: var(--u-ivory);
    text-decoration: none;
}

.auth-actions-divider {
    color: var(--u-ivory-30);
    font-size: 13px;
    user-select: none;
}

/* mb-28 utility (used in verify card) */
.mb-28 { margin-bottom: 28px !important; }
