/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    /* Brand Colors - Premium Feel */
    --primary: #042e6f;
    /* Deep Navy */
    --primary-dark: #021a42;
    /* Darker Navy */
    --primary-light: #eef4fc;
    /* Very Light Blue for backgrounds */
    --accent: #ffd500;
    /* Eurostar Yellow */

    /* Functional Colors */
    --text: #1a1a1a;
    --text-light: #666666;
    --text-lighter: #999999;
    --border: #e0e6ed;
    --success: #2e7d32;
    --error: #d32f2f;

    /* Backgrounds */
    --bg-body: #f5f7fa;
    --white: #ffffff;

    /* UI Elements */
    --radius: 12px;
    --radius-sm: 8px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
    --transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Global Reset */
* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-body);
    color: var(--text);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
    line-height: 1.5;
}

/* Typography Helpers */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 700;
}

/* ------------------------
   Header
   ------------------------ */
.eurostar-header {
    background: var(--white);
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.eurostar-header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ------------------------
   Search Page (Hero & Form)
   ------------------------ */
.search-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

.search-hero {
    text-align: center;
    margin-bottom: 30px;
}

.search-hero h1 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.search-hero .subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Search Card Styling */
.search-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    margin-bottom: 40px;
}

.input-group {
    margin-bottom: 25px;
}

.label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Route Display Group */
.route-group {
    display: flex;
    align-items: center;
    background: var(--bg-body);
    padding: 16px;
    border-radius: var(--radius);
    justify-content: space-between;
    gap: 10px;
}

.location {
    flex: 1;
}

.location .value {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.2;
}

.swap-icon {
    width: 36px;
    height: 36px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.2rem;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

/* Date Input */
.date-input-wrapper {
    position: relative;
}

.euro-input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.euro-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(4, 46, 111, 0.1);
}

.quick-chips {
    margin-top: 12px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.chip {
    padding: 6px 14px;
    background: var(--bg-body);
    border: 1px solid transparent;
    border-radius: 20px;
    color: var(--text);
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.chip:hover {
    background: #e0e6ed;
}

/* Passenger Stepper */
.passenger-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.passenger-row:last-child {
    border-bottom: none;
}

.passenger-row .type {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
}

.passenger-row .age {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 2px;
}

.stepper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.step-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--primary);
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
    line-height: 1;
    /* Fix vertical align */
}

.step-btn:hover:not(:disabled) {
    border-color: var(--primary);
    background: var(--primary-light);
}

.step-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.step-input {
    width: 30px;
    text-align: center;
    border: none;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text);
    background: transparent;
}

/* Primary Button (Search CTA) */
.btn-primary {
    width: 100%;
    padding: 18px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(4, 46, 111, 0.25);
}

.btn-primary:hover:not(:disabled) {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(4, 46, 111, 0.35);
}

.btn-primary:active:not(:disabled) {
    transform: translateY(0);
}

.btn-primary:disabled {
    background: #ccc;
    box-shadow: none;
    cursor: not-allowed;
}

/* ------------------------
   Results Page
   ------------------------ */

/* Sticky Results Header */
.results-header {
    background: var(--white);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
    position: sticky;
    top: 0;
    z-index: 900;
}

/* Responsive Results Container */
.main-layout {
    max-width: 1000px;
    /* Focus content */
    margin: 0 auto;
    padding: 0 20px;
    padding-bottom: 80px;
}

.results-list {
    width: 100%;
}

/* ------------------------
   Train Card Component
   ------------------------ */
.train-card {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 20px;
    box-shadow: var(--shadow-md);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid transparent;
    /* Prepare for selected state */
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.train-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.card-main {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    /* Match height */
    gap: 20px;
}

/* Left Side: Journey Info */
.times-group {
    flex: 0 0 40%;
    /* Fixed width for times on desktop */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.time-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.time {
    font-size: 2rem;
    /* Larger, clearer times */
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

/* Duration Graphic */
.duration-marker {
    flex: 1;
    margin: 0 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.duration-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
    background: var(--white);
    padding: 0 8px;
    z-index: 2;
    margin-bottom: 4px;
    /* Space above line if needed, or overlap */
}

.line {
    width: 100%;
    height: 2px;
    background: #e0e0e0;
    position: absolute;
    top: 50%;
    z-index: 1;
}

/* Arrow tip for line */
.line::after {
    content: '';
    position: absolute;
    right: 0;
    top: -3px;
    width: 6px;
    height: 6px;
    border-top: 2px solid #e0e0e0;
    border-right: 2px solid #e0e0e0;
    transform: rotate(45deg);
}

.stations-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Right Side: Pricing Grid */
.pricing-grid {
    flex: 1;
    /* Take remaining space */
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 equal columns */
    gap: 12px;
}

.price-box {
    background: var(--bg-body);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 90px;
    position: relative;
    /* For dropdown positioning */
}

.price-box:hover:not(.disabled) {
    background: var(--white);
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.price-box.selected {
    background: var(--primary-light);
    border-color: var(--primary);
    box-shadow: 0 0 0 2px var(--primary);
    /* Inner focused ring */
}

.price-box.disabled {
    opacity: 0.5;
    background: #f0f0f0;
    cursor: default;
}

.col-header {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.price-val {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.price-val.discount {
    color: #e67e22;
    /* High-vis orange for deals */
}

.price-original {
    text-decoration: line-through;
    color: var(--text-lighter);
    font-size: 0.85rem;
    margin-top: 4px;
}

/* Expansion Panel (Details & Selection) */
.train-details-panel {
    display: none;
    /* JS toggles this */
    border-top: 1px solid var(--border);
    background: #fcfcfc;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.panel-content {
    padding: 20px;
}

.option-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 16px;
    margin-bottom: 12px;
    transition: border-color 0.2s;
}

.option-row:hover {
    border-color: var(--primary);
}

.option-info {
    display: flex;
    flex-direction: column;
}

.option-source {
    font-weight: 600;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.option-feature-tag {
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 700;
}

.tag-re {
    background: #e3f2fd;
    color: #1976d2;
}

.tag-be {
    background: #ffebee;
    color: #c62828;
}

.tag-off {
    background: #e8f5e9;
    color: #2e7d32;
}

.option-price {
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 4px;
}

.btn-action {
    padding: 10px 24px;
    border-radius: 24px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: transform 0.2s;
}

.btn-action:hover {
    transform: scale(1.05);
}

.btn-select-fare {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 10px rgba(4, 46, 111, 0.2);
}

.btn-consult-fare {
    background: var(--white);
    color: var(--primary);
    border: 1px solid var(--primary);
}

/* ------------------------
   Booking Page (Form)
    ------------------------ */
.booking-page {
    background: var(--bg-body);
    min-height: 100vh;
    padding: 40px 0;
}

.booking-form-area {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    max-width: 800px;
    margin: 0 auto;
}

.booking-form-area h1 {
    font-size: 1.8rem;
    color: var(--primary);
}

.passenger-card {
    background: #fafbfc;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 24px;
    margin-bottom: 24px;
}

.card-header {
    border-bottom: 1px solid #eee;
    padding-bottom: 12px;
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text);
}

.form-group input {
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.2s;
}

.form-group input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(4, 46, 111, 0.1);
    outline: none;
}

/* ------------------------
   Modal
   ------------------------ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.modal-content {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: var(--shadow-lg);
}


/* ------------------------
   Responsive (Mobile First Enhancements)
   ------------------------ */
@media (max-width: 768px) {

    /* Header Adjustments */
    .search-hero h1 {
        font-size: 2rem;
    }

    /* Search Form */
    .route-group {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: 15px;
    }

    .swap-icon {
        margin: 0 auto;
        transform: rotate(90deg);
        /* Vertical arrows */
    }

    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    /* Results Page Adjustments */
    .results-header .container {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .controls-group {
        width: 100%;
        justify-content: space-between;
    }

    /* TRAIN CARD - MOBILE STACK */
    .card-main {
        flex-direction: column;
        /* Stack Time on top of Price */
        padding: 16px;
        gap: 0;
    }

    .times-group {
        width: 100%;
        margin-bottom: 20px;
        border-bottom: 1px solid #f0f0f0;
        padding-bottom: 16px;
    }

    .pricing-grid {
        width: 100%;
        margin-left: 0;

        /* Horizontal Scroll for Pricing on Mobile */
        display: flex;
        overflow-x: auto;
        padding-bottom: 8px;
        /* Space for scrollbar */
        gap: 10px;

        /* Hide scrollbar but keep functionality */
        -ms-overflow-style: none;
        /* IE and Edge */
        scrollbar-width: none;
        /* Firefox */
    }

    .pricing-grid::-webkit-scrollbar {
        display: none;
    }

    .price-box {
        min-width: 100px;
        /* Ensure boxes have width to scroll */
        flex: 0 0 auto;
        /* Don't shrink */
    }

    /* Adjust font sizes for mobile */
    .time {
        font-size: 1.6rem;
    }

    .price-val {
        font-size: 1.2rem;
    }
}

/* ------------------------
   Utilities / Extras
   ------------------------ */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mt-4 {
    margin-top: 1rem;
}

/* Skeleton Loader */
.skeleton-loader {
    padding-top: 20px;
}

.skeleton-card {
    height: 140px;
    background: linear-gradient(90deg, #f0f0f0 25%, #f7f7f7 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: var(--radius);
    margin-bottom: 20px;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Error Messages */
.error-msg {
    color: var(--error);
    background: #ffebee;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    margin: 10px 0;
}

/* ------------------------
   Payment Page Styles (New)
   ------------------------ */

.payment-container {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.summary-card {
    flex: 1;
    /* Sidebar width */
    max-width: 350px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    height: fit-content;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 90px;
    /* Offset for sticky header */
}

.payment-card {
    flex: 2;
    /* Main Content */
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow-md);
}

.summary-header {
    border-bottom: 1px solid var(--border);
    padding-bottom: 16px;
    margin-bottom: 16px;
}

.summary-header h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--primary);
}

.order-ref {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 4px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--text);
}

.summary-total {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--border);
    padding-top: 16px;
    margin-top: 16px;
    font-weight: 700;
    font-size: 1.2rem;
}

.currency-note {
    display: block;
    text-align: right;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 5px;
}

/* Payment Methods Grid */
.method-group-title {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 12px;
    margin-top: 8px;
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
}

.method-option {
    position: relative;
    cursor: pointer;
}

/* Hide Radio Button visually */
.payment-method-radio {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.payment-method-label {
    display: flex;
    flex-direction: column;
    background: var(--bg-body);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    transition: all 0.2s ease;
    cursor: pointer;
    position: relative;
    height: 100%;
}

.payment-method-radio:checked+.payment-method-label {
    border-color: var(--primary);
    background: var(--primary-light);
    box-shadow: 0 0 0 1px var(--primary);
}

.payment-method-label:hover {
    border-color: #cbd5e1;
    background: var(--white);
}

.method-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.method-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 4px;
}

.method-desc {
    font-size: 0.85rem;
    color: var(--text-light);
}

.reco-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--accent);
    color: #000;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 700;
}

/* Dynamic Payment Area */
.pay-btn {
    width: 100%;
    margin-top: 24px;
    padding: 18px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 15px rgba(4, 46, 111, 0.2);
}

.pay-btn:hover:not(:disabled) {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(4, 46, 111, 0.3);
}

.pay-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    box-shadow: none;
}

.wechat-btn {
    background: #09bb07 !important;
}

.wechat-btn:hover {
    background: #08a306 !important;
}

.alipay-btn {
    background: #1677ff !important;
}

.alipay-btn:hover {
    background: #1363d6 !important;
}

/* Responsive Payment */
@media (max-width: 900px) {
    .payment-container {
        flex-direction: column-reverse;
        /* Summary on bottom or top? usually top is safer for mobile clarity. */
        flex-direction: column;
    }

    .summary-card {
        width: 100%;
        max-width: none;
        position: static;
        margin-bottom: 20px;
    }

    .method-grid {
        grid-template-columns: 1fr;
        /* Stack methods on small screens */
    }
}/* ------------------------
   Auth Pages (Login/Signup)
   ------------------------ */
.auth-container {
    min-height: calc(100vh - 80px);
    /* Adjust for header/footer */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: var(--bg-body);
}

.auth-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    /* Larger shadow for floating effect */
    width: 100%;
    max-width: 450px;
    text-align: center;
    transition: transform 0.3s ease;
}

.auth-header {
    margin-bottom: 30px;
}

.auth-header h1 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.auth-header p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.auth-input-group {
    margin-bottom: 20px;
    text-align: left;
}

.auth-input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text);
    font-size: 0.9rem;
}

/* Enhancing existing input style for auth context if needed */
.auth-input-group .form-control {
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    color: var(--text);
    background: var(--bg-body);
    transition: all 0.2s;
}

.auth-input-group .form-control:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(4, 46, 111, 0.1);
}

.auth-footer {
    margin-top: 24px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.auth-footer a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

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

.btn-auth-primary {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    background: var(--primary);
    color: var(--white);
    border: none;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-auth-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(4, 46, 111, 0.2);
}

.btn-auth-success {
    background: var(--success);
    color: var(--white);
}

.btn-auth-success:hover {
    background: #1b5e20;
}

/* Mobile Responsiveness for Auth */
@media (max-width: 576px) {
    .auth-card {
        padding: 30px 20px;
        box-shadow: var(--shadow-md);
    }

    .auth-header h1 {
        font-size: 1.75rem;
    }
}