/* Mobile CSS for Q-Volt App */
@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@300;400;600;700;800&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-app: #f4f6f9;
    --bg-surface: #ffffff;
    --bg-surface-secondary: #f8fafc;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --color-primary: #10b981; /* Premium Emerald Green from reference */
    --color-primary-light: #e6f4ea;
    --color-accent: #7c5cfc; /* Violet accent from main site */
    --color-accent-light: #eef2ff;
    --border-light: rgba(148, 163, 184, 0.15);
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.08);
    --border-radius-lg: 24px;
    --border-radius-md: 16px;
    --border-radius-sm: 12px;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Outfit', 'Alexandria', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-app);
    color: var(--text-primary);
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* App Container (Phone Frame simulation on desktop, fullscreen on mobile) */
.phone-shell {
    width: 100%;
    max-width: 480px;
    height: 100%;
    background-color: var(--bg-app);
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

@media (min-width: 481px) {
    .phone-shell {
        height: 92vh;
        border-radius: 40px;
        border: 8px solid #1e293b;
    }
}

/* Header */
.app-header {
    background-color: var(--bg-surface);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-light);
    z-index: 10;
}

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

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-primary-light);
    cursor: pointer;
    background: #e2e8f0;
}

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

.welcome-greet {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.welcome-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
}

.app-logo-text {
    font-size: 1.25rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-surface-secondary);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    cursor: pointer;
    position: relative;
    transition: var(--transition-smooth);
}

.icon-btn:active {
    transform: scale(0.95);
}

.badge-dot {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ef4444;
}

/* App Main Content Area */
.app-content {
    flex: 1;
    overflow-y: auto;
    position: relative;
    padding-bottom: 24px;
}

/* Tab Screens container */
.tab-screen {
    display: none;
    width: 100%;
    height: 100%;
    animation: fadeIn 0.3s ease;
}

.tab-screen.active {
    display: block;
}

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

/* Bottom Navigation Bar */
.bottom-nav {
    background-color: var(--bg-surface);
    height: 72px;
    border-top: 1px solid var(--border-light);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 10px;
    z-index: 10;
    padding-bottom: env(safe-area-inset-bottom);
}

.nav-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.65rem;
    font-weight: 600;
    width: 54px;
    height: 54px;
    border-radius: 16px;
    gap: 4px;
    transition: var(--transition-smooth);
    border: none;
    background: transparent;
    cursor: pointer;
}

.nav-tab i {
    font-size: 1.25rem;
}

.nav-tab.active {
    color: var(--color-primary);
}

/* Tab 5 (Profile) style customized from reference: active is solid green square */
.nav-tab.special-tab.active {
    background-color: var(--color-primary);
    color: #ffffff;
    box-shadow: 0 8px 16px rgba(16, 185, 129, 0.3);
}

.nav-tab.special-tab {
    border-radius: 12px;
}

/* Search Bar Module */
.search-container {
    padding: 16px 20px;
}

.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    width: 100%;
    height: 52px;
    background-color: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-md);
    padding: 0 18px 0 46px;
    font-size: 0.9rem;
    color: var(--text-primary);
    font-family: inherit;
    outline: none;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.search-input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.search-wrapper i {
    position: absolute;
    left: 18px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* RTL Search adjustment */
[dir="rtl"] .search-input {
    padding: 0 46px 0 18px;
}
[dir="rtl"] .search-wrapper i {
    left: auto;
    right: 18px;
}

/* Horizontal Categories */
.categories-container {
    padding: 0 0 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

[dir="rtl"] .categories-container {
    padding: 0 20px 16px 0;
}

.section-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4px;
    padding-right: 20px;
}

.categories-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 4px 20px 8px 0;
    scrollbar-width: none; /* Hide scrollbar Firefox */
}

.categories-scroll::-webkit-scrollbar {
    display: none; /* Hide scrollbar Chrome/Safari */
}

.category-circle-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.category-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--bg-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-light);
    color: var(--text-secondary);
    font-size: 1.4rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.category-circle-wrapper:active .category-circle {
    transform: scale(0.9);
}

.category-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: center;
    max-width: 72px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Active category highlights matching the image's green background tint and line */
.category-circle-wrapper.active .category-circle {
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.category-circle-wrapper.active .category-name {
    color: var(--color-primary);
    font-weight: 700;
}

/* Grid layout matching the image */
.products-grid-section {
    padding: 0 20px 20px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.product-card {
    background-color: var(--bg-surface);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-light);
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: var(--shadow-soft);
    position: relative;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.product-card:active {
    transform: scale(0.97);
}

.product-image-container {
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--border-radius-sm);
    background-color: var(--bg-surface-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.product-image-container img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.product-card-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 32px;
}

.product-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2px;
}

.product-card-price {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--color-primary);
}

.add-mini-btn {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.add-mini-btn:hover {
    background-color: var(--color-primary);
    color: #ffffff;
}

/* Banner Card (Featured / Action card in center) */
.banner-section {
    padding: 0 20px 20px;
}

.app-banner {
    background: linear-gradient(135deg, #10b981 0%, #7c5cfc 100%);
    border-radius: var(--border-radius-lg);
    padding: 24px 20px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.banner-glow {
    position: absolute;
    right: -50px;
    bottom: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    filter: blur(40px);
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 65%;
}

.banner-title {
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 8px;
}

.banner-desc {
    font-size: 0.8rem;
    opacity: 0.9;
    line-height: 1.4;
    margin-bottom: 16px;
}

.banner-btn {
    background-color: #ffffff;
    color: var(--color-accent);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

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

/* Circular Subcategories Grid (Options Grid) */
.options-grid-section {
    padding: 0 20px 20px;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    justify-items: center;
}

.option-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.option-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--bg-surface);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.option-item:active .option-icon {
    transform: scale(0.9);
}

.option-label {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.2;
}

/* Detail Modals & Bottom Sheets */
.bottom-sheet-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 99;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bottom-sheet {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    max-height: 85%;
    background-color: var(--bg-surface);
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
    z-index: 100;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    transition: bottom 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.bottom-sheet.open {
    bottom: 0;
}

.bottom-sheet-backdrop.open {
    display: block;
    opacity: 1;
}

.bottom-sheet-drag {
    width: 40px;
    height: 5px;
    background-color: var(--border-light);
    border-radius: 3px;
    margin: 12px auto 8px;
}

.bottom-sheet-header {
    padding: 0 20px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-light);
}

.bottom-sheet-title {
    font-size: 1.1rem;
    font-weight: 800;
}

.bottom-sheet-close {
    background: transparent;
    border: none;
    font-size: 1.3rem;
    color: var(--text-muted);
    cursor: pointer;
}

.bottom-sheet-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

/* Products Screen */
.store-header-actions {
    display: flex;
    padding: 0 20px 12px;
    gap: 10px;
}

.store-filter-select {
    flex: 1;
    height: 44px;
    background-color: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-sm);
    padding: 0 12px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    outline: none;
    font-family: inherit;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
}

/* Detail Card custom styling */
.detail-img-container {
    width: 100%;
    aspect-ratio: 1.3;
    border-radius: var(--border-radius-md);
    background-color: var(--bg-surface-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 20px;
}

.detail-img-container img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.detail-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.detail-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-primary);
    max-width: 70%;
}

.detail-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-primary);
}

.detail-brand {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 16px;
    display: inline-block;
    background-color: var(--bg-surface-secondary);
    padding: 4px 10px;
    border-radius: 50px;
}

.detail-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 24px;
}

.detail-actions {
    display: flex;
    gap: 12px;
}

.btn-primary {
    flex: 1;
    height: 52px;
    border-radius: var(--border-radius-sm);
    background: linear-gradient(135deg, var(--color-primary) 0%, #059669 100%);
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

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

/* Calculator Screen (Design System Calculator) */
.calc-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.form-input {
    height: 48px;
    background-color: var(--bg-surface-secondary);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-sm);
    padding: 0 14px;
    font-size: 0.85rem;
    color: var(--text-primary);
    font-family: inherit;
    outline: none;
    transition: var(--transition-smooth);
}

.form-input:focus {
    border-color: var(--color-primary);
    background-color: var(--bg-surface);
}

.calc-result-card {
    background-color: var(--color-primary-light);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--border-radius-md);
    padding: 16px;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.calc-result-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.calc-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.calc-item span:last-child {
    font-weight: 800;
    color: var(--text-primary);
}

/* Cart Screen */
.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cart-item {
    background-color: var(--bg-surface);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-light);
    padding: 12px;
    display: flex;
    gap: 12px;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.cart-item-img {
    width: 64px;
    height: 64px;
    border-radius: var(--border-radius-sm);
    background-color: var(--bg-surface-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cart-item-img img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cart-item-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-primary);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cart-item-price-qty {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-item-price {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--color-primary);
}

.qty-counter {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--bg-surface-secondary);
    border-radius: 6px;
    padding: 2px;
}

.qty-btn {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    border: none;
    background-color: var(--bg-surface);
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-val {
    font-size: 0.8rem;
    font-weight: 700;
    width: 20px;
    text-align: center;
}

.remove-cart-item {
    position: absolute;
    top: 12px;
    right: 12px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 0.95rem;
    cursor: pointer;
}

/* RTL adjustment for remove btn */
[dir="rtl"] .remove-cart-item {
    right: auto;
    left: 12px;
}

.cart-summary {
    margin-top: 24px;
    background-color: var(--bg-surface-secondary);
    border-radius: var(--border-radius-md);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.cart-total-row.grand-total {
    border-top: 1px solid var(--border-light);
    padding-top: 12px;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-primary);
}

.checkout-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
    position: relative;
    padding: 0 10px;
}

.checkout-steps::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 30px;
    right: 30px;
    height: 2px;
    background-color: var(--border-light);
    z-index: 1;
}

.step-node {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--bg-surface-secondary);
    border: 2px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    z-index: 2;
    position: relative;
}

.step-node.active {
    background-color: var(--color-primary-light);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.step-node.done {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #ffffff;
}

/* Profile / Login view */
.profile-card {
    background-color: var(--bg-surface);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-light);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 20px;
}

.profile-avatar-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-primary-light);
    background: #e2e8f0;
}

.profile-name {
    font-size: 1.15rem;
    font-weight: 800;
}

.profile-email {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: -6px;
}

.menu-list {
    background-color: var(--bg-surface);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-light);
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: var(--shadow-soft);
}

.menu-list-item {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-light);
    cursor: pointer;
    transition: var(--transition-smooth);
}

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

.menu-list-item:active {
    background-color: var(--bg-surface-secondary);
}

.menu-item-left {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
}

.menu-item-left i {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.menu-item-right {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Order List UI */
.order-card {
    background-color: var(--bg-surface);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-light);
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 12px;
}

.order-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    font-weight: 700;
}

.order-status {
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 50px;
    font-weight: 800;
}

.status-pending { background-color: #fef3c7; color: #d97706; }
.status-completed { background-color: #d1fae5; color: #059669; }
.status-shipped { background-color: #dbeafe; color: #2563eb; }
.status-cancelled { background-color: #fee2e2; color: #dc2626; }

/* Empty state styling */
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
    color: var(--text-muted);
    gap: 12px;
}

.empty-state i {
    font-size: 3rem;
    color: var(--border-light);
}

.empty-state-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-primary);
}

.empty-state-desc {
    font-size: 0.8rem;
    max-width: 250px;
}

/* Authentication style sheets */
.auth-form-card {
    background-color: var(--bg-surface);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-light);
    padding: 24px 20px;
    box-shadow: var(--shadow-medium);
}

.auth-header {
    text-align: center;
    margin-bottom: 24px;
}

.auth-title {
    font-size: 1.3rem;
    font-weight: 800;
}

.auth-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
}
