/* Auth screen — login / logout cinematic layout */
.auth-screen-page {
    --auth-green: #2c5f2e;
    --auth-green-dark: #1e4620;
    --auth-green-soft: rgba(44, 95, 46, 0.12);
    --auth-ink: #1a1a1a;
    --auth-muted: #5c5c5c;
    --auth-card: rgba(255, 255, 255, 0.94);
    --auth-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
    --auth-radius: 1.25rem;
    --auth-safe-top: max(1rem, env(safe-area-inset-top));
    --auth-safe-bottom: max(1rem, env(safe-area-inset-bottom));
    --auth-safe-left: max(1rem, env(safe-area-inset-left));
    --auth-safe-right: max(1rem, env(safe-area-inset-right));

    font-family: Georgia, 'Times New Roman', serif;
    color: var(--auth-ink);
    background: #0a0a0a;
    min-height: 100vh;
    min-height: 100dvh;
    overflow: hidden;
}

.auth-screen-page *,
.auth-screen-page *::before,
.auth-screen-page *::after {
    box-sizing: border-box;
}

.auth-screen-page a {
    color: inherit;
    text-decoration: none;
}

.auth-screen-scene {
    position: fixed;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    overflow: hidden;
    background: #000;
    --auth-marquee-gap: 5px;
}

.auth-screen-scene--empty {
    background:
        linear-gradient(135deg, #1a3320 0%, #243828 45%, #2d2d2d 100%);
}

.auth-screen-scene::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.28) 42%, rgba(0, 0, 0, 0.72) 100%),
        radial-gradient(circle at 50% 45%, rgba(44, 95, 46, 0.18) 0%, transparent 55%);
}

.auth-screen-marquee {
    position: absolute;
    left: 0;
    width: 100%;
    height: calc((100% - 3 * var(--auth-marquee-gap)) / 3);
    overflow: hidden;
    opacity: 0.82;
    padding: 0;
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.auth-screen-marquee--top {
    top: var(--auth-marquee-gap);
}

.auth-screen-marquee--middle {
    top: calc(var(--auth-marquee-gap) * 2 + (100% - 3 * var(--auth-marquee-gap)) / 3);
}

.auth-screen-marquee--bottom {
    top: calc(var(--auth-marquee-gap) * 3 + 2 * (100% - 3 * var(--auth-marquee-gap)) / 3);
}

.auth-screen-marquee-track {
    display: flex;
    width: max-content;
    height: 100%;
    align-items: stretch;
    gap: 5px;
    padding: 5px 10px 0;
    will-change: transform;
}

.auth-screen-marquee-track img {
    display: block;
    height: 100%;
    width: auto;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 0.5rem;
    filter: saturate(0.92);
}

.auth-screen-marquee--top .auth-screen-marquee-track {
    animation: auth-screen-scroll 42s linear infinite;
}

.auth-screen-marquee--middle .auth-screen-marquee-track {
    animation: auth-screen-scroll 48s linear infinite reverse;
}

.auth-screen-marquee--bottom .auth-screen-marquee-track {
    animation: auth-screen-scroll 54s linear infinite;
}

@keyframes auth-screen-scroll {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(-50%, 0, 0); }
}

.auth-screen-panel {
    position: fixed;
    inset: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    padding:
        var(--auth-safe-top)
        var(--auth-safe-right)
        var(--auth-safe-bottom)
        var(--auth-safe-left);
}

.auth-screen-card {
    width: min(100%, 26rem);
    padding: 1.75rem 1.5rem 1.5rem;
    border-radius: var(--auth-radius);
    background: var(--auth-card);
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow: var(--auth-shadow);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    text-align: center;
    opacity: 0;
    transform: translateY(1.25rem) scale(0.98);
    transition:
        opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.auth-screen-page.is-ready .auth-screen-card {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.auth-screen-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
    font-family: 'Outfit', Arial, sans-serif;
}

.auth-screen-brand .logo-mark {
    width: 3.5rem;
    height: 3.5rem;
    object-fit: contain;
}

.auth-screen-brand .logo-text {
    display: inline-flex;
    align-items: baseline;
    gap: 0;
    font-size: 1.65rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.auth-screen-brand .logo-wordmark-travel {
    color: var(--auth-green);
}

.auth-screen-brand .logo-wordmark-date {
    color: #c45c26;
}

.auth-screen-title {
    margin: 0 0 0.65rem;
    font-family: 'Outfit', Arial, sans-serif;
    font-size: clamp(1.35rem, 4vw, 1.55rem);
    font-weight: 700;
    line-height: 1.25;
    color: var(--auth-ink);
}

.auth-screen-lead {
    margin: 0 0 1.35rem;
    font-size: 0.98rem;
    line-height: 1.55;
    color: var(--auth-muted);
}

.auth-screen-form {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.15rem;
    text-align: left;
}

.auth-screen-form label {
    display: grid;
    gap: 0.4rem;
    font-family: 'Outfit', Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--auth-ink);
}

.auth-screen-label-note {
    font-weight: 500;
    color: var(--auth-muted);
}

.auth-screen-form input {
    width: 100%;
    padding: 0.75rem 0.95rem;
    border: 1px solid #d8d2c8;
    border-radius: 0.75rem;
    font-family: Arial, sans-serif;
    font-size: 1rem;
    color: var(--auth-ink);
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.auth-screen-form input:focus {
    outline: none;
    border-color: var(--auth-green);
    box-shadow: 0 0 0 3px rgba(44, 95, 46, 0.15);
}

.auth-screen-error {
    margin-bottom: 1rem;
    padding: 0.75rem 0.95rem;
    border-radius: 0.75rem;
    font-family: 'Outfit', Arial, sans-serif;
    font-size: 0.9rem;
    line-height: 1.4;
    text-align: left;
    color: #8b1e1e;
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.25);
}

.auth-screen-success {
    margin-bottom: 1rem;
    padding: 0.75rem 0.95rem;
    border-radius: 0.75rem;
    font-family: 'Outfit', Arial, sans-serif;
    font-size: 0.9rem;
    line-height: 1.4;
    text-align: left;
    color: #1e4620;
    background: rgba(44, 95, 46, 0.1);
    border: 1px solid rgba(44, 95, 46, 0.25);
}

.auth-screen-success--dev a {
    color: var(--auth-green);
    font-weight: 600;
    word-break: break-all;
}

.auth-screen-actions {
    display: grid;
    gap: 0.65rem;
}

.auth-screen-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    min-height: 2.85rem;
    padding: 0.75rem 1.1rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-family: 'Outfit', Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.2;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.auth-screen-btn svg {
    width: 1.05rem;
    height: 1.05rem;
    flex-shrink: 0;
}

.auth-screen-btn--primary {
    background: var(--auth-green);
    color: #fff;
    box-shadow: 0 8px 20px rgba(44, 95, 46, 0.28);
}

.auth-screen-btn--secondary {
    background: #fff;
    color: var(--auth-ink);
    border-color: #d8d2c8;
}

@media (hover: hover) {
    .auth-screen-btn--primary:hover {
        background: var(--auth-green-dark);
        transform: translateY(-1px);
        box-shadow: 0 10px 24px rgba(44, 95, 46, 0.34);
    }

    .auth-screen-btn--secondary:hover {
        border-color: #b8b0a2;
        background: #faf8f4;
    }
}

.auth-screen-btn:active {
    transform: scale(0.98);
}

.auth-screen-btn:focus-visible {
    outline: 2px solid var(--auth-green);
    outline-offset: 2px;
}

.auth-screen-footnote {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    margin: 1.15rem 0 0;
    font-size: 0.82rem;
    color: #777;
}

.auth-screen-footnote svg {
    width: 0.9rem;
    height: 0.9rem;
    color: var(--auth-green);
}

.auth-screen-footer {
    margin: 1.15rem 0 0;
    font-family: 'Outfit', Arial, sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--auth-muted);
}

.auth-screen-footer a {
    color: var(--auth-green);
    font-weight: 600;
}

.auth-screen-footer a:hover {
    text-decoration: underline;
}

.auth-screen-page.is-paused .auth-screen-marquee-track {
    animation-play-state: paused;
}

@media (max-width: 480px) {
    .auth-screen-card {
        padding: 1.5rem 1.15rem 1.25rem;
    }

    .auth-screen-btn {
        min-height: 3rem;
        font-size: 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .auth-screen-marquee-track {
        animation: none !important;
        transform: none !important;
    }

    .auth-screen-card {
        animation: none !important;
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Register — scrollable wide card on auth screen */
.auth-screen-page--register {
    overflow: auto;
}

.auth-screen-page--register .auth-screen-panel--scroll {
    position: relative;
    z-index: 10;
    inset: auto;
    min-height: 100vh;
    min-height: 100dvh;
    align-items: flex-start;
    padding-top: max(1rem, env(safe-area-inset-top));
    padding-bottom: max(1.25rem, env(safe-area-inset-bottom));
}

.auth-screen-card--register {
    width: min(100%, 26rem);
    max-height: none;
    margin: 0 auto;
    text-align: left;
}

.auth-screen-card--register .auth-screen-brand {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-bottom: 1rem;
}

.auth-screen-kicker {
    display: block;
    width: fit-content;
    margin: 0 auto 0.75rem;
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    background: var(--auth-green-soft);
    color: var(--auth-green);
    font-family: 'Outfit', Arial, sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.auth-screen-card--register .auth-screen-title {
    text-align: center;
    margin-bottom: 0.5rem;
}

.auth-screen-card--register .auth-screen-lead {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 0.92rem;
}

.auth-screen-benefits {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
    display: grid;
    gap: 0.45rem;
}

.auth-screen-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-family: 'Outfit', Arial, sans-serif;
    font-size: 0.84rem;
    line-height: 1.4;
    color: var(--auth-muted);
}

.auth-screen-benefits li::before {
    content: '✓';
    flex-shrink: 0;
    width: 1.15rem;
    height: 1.15rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--auth-green-soft);
    color: var(--auth-green);
    font-size: 0.65rem;
    font-weight: 700;
    margin-top: 0.1rem;
}

.auth-screen-form--register {
    margin-bottom: 0.75rem;
}

.auth-screen-form--register select,
.auth-screen-form--register input[type="date"] {
    width: 100%;
    padding: 0.75rem 0.95rem;
    border: 1px solid #d8d2c8;
    border-radius: 0.75rem;
    font-family: Arial, sans-serif;
    font-size: 1rem;
    color: var(--auth-ink);
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.auth-screen-form--register select:focus,
.auth-screen-form--register input[type="date"]:focus {
    outline: none;
    border-color: var(--auth-green);
    box-shadow: 0 0 0 3px rgba(44, 95, 46, 0.15);
}

.auth-screen-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.auth-screen-dob-label {
    display: block;
    margin-bottom: 0.4rem;
    font-family: 'Outfit', Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--auth-ink);
}

.auth-screen-dob-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 0.5rem;
}

.auth-screen-dob-grid select {
    width: 100%;
    padding: 0.75rem 0.55rem;
    border: 1px solid #d8d2c8;
    border-radius: 0.75rem;
    font-family: Arial, sans-serif;
    font-size: 0.95rem;
    color: var(--auth-ink);
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.auth-screen-dob-grid select:focus {
    outline: none;
    border-color: var(--auth-green);
    box-shadow: 0 0 0 3px rgba(44, 95, 46, 0.15);
}

.auth-screen-field-hint {
    display: block;
    margin-top: 0.3rem;
    font-family: 'Outfit', Arial, sans-serif;
    font-size: 0.78rem;
    color: #888;
    line-height: 1.3;
}

.auth-screen-field-status {
    display: block;
    margin-top: 0.3rem;
    font-family: 'Outfit', Arial, sans-serif;
    font-size: 0.8rem;
    min-height: 1.1rem;
}

.auth-screen-field-status--checking,
.auth-screen-form--register .field-status--checking { color: #666; }

.auth-screen-field-status--available,
.auth-screen-form--register .field-status--available { color: var(--auth-green); font-weight: 600; }

.auth-screen-field-status--taken,
.auth-screen-field-status--invalid,
.auth-screen-form--register .field-status--taken,
.auth-screen-form--register .field-status--invalid { color: #b33; font-weight: 600; }

.auth-screen-password-wrap {
    position: relative;
    display: block;
}

.auth-screen-password-wrap input {
    padding-right: 3.5rem;
}

.auth-screen-password-toggle {
    position: absolute;
    top: 50%;
    right: 0.5rem;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    color: var(--auth-green);
    font-family: 'Outfit', Arial, sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0.25rem 0.4rem;
}

.auth-screen-password-toggle:hover {
    text-decoration: underline;
}

.auth-screen-terms {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    margin: 0.25rem 0 0;
    font-family: 'Outfit', Arial, sans-serif;
    font-size: 0.82rem;
    line-height: 1.45;
    color: var(--auth-muted);
    font-weight: 400;
}

.auth-screen-terms input {
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.auth-screen-terms a {
    color: var(--auth-green);
    font-weight: 600;
}

.auth-screen-form label.auth-screen-terms {
    display: flex;
    align-items: center;
    font-weight: 400;
    color: var(--auth-muted);
}

.auth-screen-form label.auth-screen-terms input[type="checkbox"] {
    width: 1rem;
    height: 1rem;
    padding: 0;
    margin: 0;
    flex-shrink: 0;
}

.auth-screen-photo-picker {
    display: grid;
    gap: 0.55rem;
    justify-items: center;
    text-align: center;
    margin-bottom: 0.25rem;
}

.auth-screen-photo-picker-label {
    font-family: 'Outfit', Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--auth-ink);
}

.auth-screen-photo-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 7.5rem;
    height: 7.5rem;
    border-radius: 50%;
    border: 2px dashed var(--auth-green);
    background: rgba(44, 95, 46, 0.06);
    cursor: pointer;
    overflow: hidden;
    position: relative;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.auth-screen-photo-circle:hover {
    border-color: var(--auth-green-dark);
    background: rgba(44, 95, 46, 0.1);
}

.auth-screen-photo-circle.has-preview {
    border-style: solid;
    background: #fff;
}

.auth-screen-photo-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.auth-screen-photo-placeholder {
    padding: 0 0.75rem;
    font-family: 'Outfit', Arial, sans-serif;
    font-size: 0.85rem;
    color: var(--auth-green);
    font-weight: 600;
    line-height: 1.3;
}

.auth-screen-photo-circle.has-preview .auth-screen-photo-placeholder {
    display: none;
}

.auth-screen-photo-circle input[type="file"] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: 0;
    border: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    opacity: 0;
}

.auth-screen-card--register .auth-screen-footer {
    text-align: center;
}

.auth-screen-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin: 0 0 1.25rem;
    padding: 0;
    list-style: none;
}

.auth-screen-steps-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    text-align: center;
    opacity: 0.45;
}

.auth-screen-steps-item.is-active,
.auth-screen-steps-item.is-complete {
    opacity: 1;
}

.auth-screen-steps-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.85rem;
    height: 1.85rem;
    border-radius: 50%;
    border: 2px solid #d8d2c8;
    font-family: 'Outfit', Arial, sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--auth-muted);
    background: #fff;
}

.auth-screen-steps-item.is-active .auth-screen-steps-number {
    border-color: var(--auth-green);
    background: var(--auth-green);
    color: #fff;
}

.auth-screen-steps-item.is-complete .auth-screen-steps-number {
    border-color: var(--auth-green);
    color: var(--auth-green);
}

.auth-screen-steps-label {
    font-family: 'Outfit', Arial, sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--auth-muted);
    line-height: 1.2;
}

.auth-screen-steps-item.is-active .auth-screen-steps-label {
    color: var(--auth-ink);
}

.auth-screen-form-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
    margin-top: 0.25rem;
}

.auth-screen-form-actions .auth-screen-btn--secondary {
    text-align: center;
}

.upload-overlay-open {
    overflow: hidden;
}

.upload-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.65);
}

.upload-overlay:not([hidden]) {
    display: flex;
}

.upload-overlay[hidden] {
    display: none !important;
}

.upload-overlay-card {
    text-align: center;
    color: #fff;
}

.upload-progress-ring {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
}

.upload-progress-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.upload-progress-track {
    fill: none;
    stroke: rgba(255, 255, 255, 0.22);
    stroke-width: 8;
}

.upload-progress-fill {
    fill: none;
    stroke: #7dd87d;
    stroke-width: 8;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.15s ease;
}

.upload-progress-value {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', Arial, sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
}

.upload-progress-label {
    margin: 0;
    font-family: 'Outfit', Arial, sans-serif;
    font-size: 0.95rem;
    color: #eee;
}

@media (max-width: 480px) {
    .auth-screen-form-grid {
        grid-template-columns: 1fr;
    }

    .auth-screen-dob-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

/* Preview gate — benefits + actions in centered card */
.auth-screen-card:not(.auth-screen-card--register) .auth-screen-benefits {
    margin-bottom: 1.25rem;
    text-align: left;
}

.auth-screen-card:not(.auth-screen-card--register) .auth-screen-actions {
    margin-top: 0.15rem;
}

.auth-screen-terms .legal-modal-trigger {
    display: inline;
    border: none;
    background: none;
    padding: 0;
    margin: 0;
    font: inherit;
    color: var(--auth-green);
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
}

.auth-screen-terms .legal-modal-trigger:hover {
    text-decoration: underline;
}

/* Legal modals on auth screens (register-beta) */
.legal-modal-open {
    overflow: hidden;
}

.legal-modal {
    position: fixed;
    inset: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.legal-modal[hidden] {
    display: none;
}

.legal-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.legal-modal-panel {
    position: relative;
    z-index: 1;
    width: min(100%, 42rem);
    max-height: min(85vh, 720px);
    overflow: auto;
    background: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.legal-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.15rem;
    border-bottom: 1px solid #e8e4dc;
    position: sticky;
    top: 0;
    background: #fff;
}

.legal-modal-header h2 {
    margin: 0;
    font-family: 'Outfit', Arial, sans-serif;
    font-size: 1.1rem;
    color: var(--auth-ink);
}

.legal-modal-close {
    border: none;
    background: #f4f1ea;
    color: #555;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
}

.legal-modal-close:hover {
    background: #eee;
    color: #333;
}

.legal-modal-body {
    padding: 1rem 1.15rem 1.25rem;
}

.legal-body {
    font-family: Arial, sans-serif;
    font-size: 0.92rem;
    line-height: 1.55;
    color: #333;
}

.legal-body h2 {
    font-family: 'Outfit', Arial, sans-serif;
    font-size: 1rem;
    margin: 1.25rem 0 0.5rem;
    color: var(--auth-ink);
}

.legal-body h2:first-child {
    margin-top: 0;
}

.legal-body p {
    margin: 0 0 0.85rem;
}

.legal-body ul {
    margin: 0 0 0.85rem 1.25rem;
    padding: 0;
}

.legal-body li {
    margin-bottom: 0.35rem;
}

.legal-body a {
    color: var(--auth-green);
    font-weight: bold;
}
