/* ==========================================================================
   HeatUp Delivery - App Styles
   Override styles for Auth & Dashboard pages (loads AFTER home-styles.css)
   Version: 2.0 - Unified sidebar & form styles
   ========================================================================== */

/* ==========================================================================
   1. PAGE-LEVEL OVERRIDES
   ========================================================================== */

.page-auth,
.page-dashboard,
.page-form {
    padding-top: 0 !important;
    overflow-x: hidden !important;
}

.page-auth {
    overflow-x: hidden !important;
    overflow-y: auto !important;
    height: auto !important;
    min-height: 100vh;
}

.page-auth .announcement-bar,
.page-auth .nebula-bg,
.page-auth .noise-overlay,
.page-auth .sticky-cta-mobile,
.page-dashboard .announcement-bar,
.page-dashboard .nebula-bg,
.page-dashboard .noise-overlay,
.page-dashboard .sticky-cta-mobile,
.page-form .announcement-bar,
.page-form .nebula-bg,
.page-form .noise-overlay,
.page-form .sticky-cta-mobile {
    display: none !important;
}

.page-auth .navbar,
.page-dashboard .navbar,
.page-form .navbar {
    top: 0 !important;
}

/* ==========================================================================
   2. SHARED SIDEBAR LAYOUT
   Used by: dashboard, forms, delete pages
   ========================================================================== */

.sidebar-layout {
    display: flex;
    min-height: calc(100vh - 64px);
    position: relative;
}

/* Prevent body scroll when in dashboard */
.page-dashboard {
    overflow: hidden !important;
    height: 100vh;
}

.page-dashboard main {
    padding-top: 64px !important;
    height: 100vh;
    overflow: hidden;
}

/* ==================== SIDEBAR ==================== */
.sidebar {
    width: 280px;
    background: #FFFFFF;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    position: fixed;
    top: 64px;
    left: 0;
    height: calc(100vh - 64px);
    overflow-y: auto;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    z-index: 40;
}

@media (max-width: 1024px) {
    .sidebar {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 100;
        height: 100vh;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    .sidebar.open { transform: translateX(0); }
}

.sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    z-index: 99;
}

@media (max-width: 1024px) {
    .sidebar-overlay.active { display: block; }
}

/* User Profile */
.user-profile {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(251, 191, 36, 0.04) 100%);
    border-bottom: 1px solid rgba(255, 107, 53, 0.15);
    position: relative;
    overflow: hidden;
}

.user-profile::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background: rgba(255, 107, 53, 0.06);
    border-radius: 50%;
}

/* Color variants for user-profile */
.user-profile.blue {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(99, 102, 241, 0.04) 100%);
    border-bottom-color: rgba(59, 130, 246, 0.15);
}
.user-profile.blue::before { background: rgba(59, 130, 246, 0.06); }

.user-profile.purple {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.08) 0%, rgba(139, 92, 246, 0.04) 100%);
    border-bottom-color: rgba(168, 85, 247, 0.15);
}
.user-profile.purple::before { background: rgba(168, 85, 247, 0.06); }

.user-profile.red {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.08) 0%, rgba(220, 38, 38, 0.04) 100%);
    border-bottom-color: rgba(239, 68, 68, 0.15);
}
.user-profile.red::before { background: rgba(239, 68, 68, 0.06); }

.user-profile-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.user-avatar {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, #FF6B35, #F59E0B);
    border-radius: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    color: white;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.35);
}

.user-avatar.blue {
    background: linear-gradient(135deg, #3B82F6, #6366F1);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.35);
}

.user-avatar.purple {
    background: linear-gradient(135deg, #A855F7, #8B5CF6);
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.35);
}

.user-avatar.red {
    background: linear-gradient(135deg, #EF4444, #DC2626);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.35);
}

.user-info h2 {
    font-family: 'Clash Display', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.125rem;
}

.user-info p {
    font-size: 0.8125rem;
    color: #525252;
}

.mobile-close-btn {
    display: none;
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.06);
    border: none;
    border-radius: 0.5rem;
    padding: 0.5rem;
    color: #1a1a1a;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .mobile-close-btn { display: block; }
}

/* Sidebar Navigation */
.sidebar-nav {
    flex: 1;
    padding: 1rem;
}

.nav-section-label {
    font-size: 0.6875rem;
    font-weight: 600;
    color: #737373;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.75rem 1rem 0.5rem;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 0.625rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    background: transparent;
    width: 100%;
    text-align: left;
    font-size: 0.9375rem;
    color: #525252;
    text-decoration: none;
}

.nav-item:hover {
    background: rgba(0, 0, 0, 0.04);
    color: #1a1a1a;
}

.nav-item.active {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.05));
    color: #FF6B35;
    border-left: 3px solid #FF6B35;
    margin-left: -3px;
}

.nav-item svg {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

.nav-item .badge {
    margin-left: auto;
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 1rem;
    background: rgba(255, 107, 53, 0.15);
    color: #FF6B35;
}

/* Sidebar CTA */
.sidebar-cta {
    padding: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.sidebar-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.875rem 1rem;
    background: linear-gradient(135deg, #FF6B35 0%, #F59E0B 100%);
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    border: none;
    border-radius: 0.625rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.35);
}

.sidebar-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.45);
}

.sidebar-cta-btn svg {
    width: 1.125rem;
    height: 1.125rem;
}

/* ==================== MAIN CONTENT ==================== */
.sidebar-layout .main-content {
    flex: 1;
    min-width: 0;
    background: #FAFAFA;
    margin-left: 280px; /* Space for fixed sidebar */
    height: calc(100vh - 64px);
    overflow-y: auto;
}

@media (max-width: 1024px) {
    .sidebar-layout .main-content {
        margin-left: 0;
    }
}

/* Mobile Header */
.mobile-header {
    display: none;
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 0.75rem 1rem;
}

@media (max-width: 1024px) {
    .mobile-header { display: flex; align-items: center; justify-content: space-between; }
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    color: #1a1a1a;
    cursor: pointer;
}

.mobile-menu-btn svg { width: 1.25rem; height: 1.25rem; }

.mobile-title {
    font-family: 'Clash Display', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
}

/* Content Area */
.content-area {
    padding: 2rem;
}

@media (max-width: 768px) {
    .content-area { padding: 1.25rem; }
}

.page-header {
    margin-bottom: 2rem;
}

@media (max-width: 1024px) {
    .page-header { display: none; }
}

.page-title {
    font-family: 'Clash Display', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.page-subtitle {
    color: #525252;
    font-size: 0.9375rem;
}

/* ==========================================================================
   3. FORM PAGE STYLES
   ========================================================================== */

.form-content-area {
    padding: 2rem;
    display: flex;
    justify-content: center;
}

@media (max-width: 768px) {
    .form-content-area { padding: 1.25rem; }
}

.form-container {
    width: 100%;
    max-width: 640px;
}

/* Back Link */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #525252;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    transition: color 0.2s ease;
}

.back-link:hover { color: #1a1a1a; }
.back-link svg { width: 1.25rem; height: 1.25rem; }

/* Form Card */
.form-card {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.form-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.form-header.blue {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(99, 102, 241, 0.04) 100%);
    border-bottom-color: rgba(59, 130, 246, 0.15);
}

.form-header.orange {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(251, 191, 36, 0.04) 100%);
    border-bottom-color: rgba(255, 107, 53, 0.15);
}

.form-header.purple {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.08) 0%, rgba(139, 92, 246, 0.04) 100%);
    border-bottom-color: rgba(168, 85, 247, 0.15);
}

.form-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.form-header-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.form-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.form-icon.blue {
    background: rgba(59, 130, 246, 0.2);
}
.form-icon.blue svg { color: #3B82F6; }

.form-icon.orange {
    background: rgba(255, 107, 53, 0.2);
}
.form-icon.orange svg { color: #FF6B35; }

.form-icon.purple {
    background: rgba(168, 85, 247, 0.2);
}
.form-icon.purple svg { color: #A855F7; }

.form-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.form-header-text h1 {
    font-family: 'Clash Display', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.125rem;
}

.form-header-text p {
    font-size: 0.875rem;
    color: #525252;
}

/* Form Body */
.form-body {
    padding: 2rem;
}

/* Form Section */
.form-section {
    margin-bottom: 2rem;
}

.form-section:last-child {
    margin-bottom: 0;
}

.form-section-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.form-section-icon {
    width: 2rem;
    height: 2rem;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-section-icon svg {
    width: 1rem;
    height: 1rem;
    color: #525252;
}

.form-section-title {
    font-family: 'Clash Display', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1a1a1a;
}

/* Form Grid */
.form-grid {
    display: grid;
    gap: 1rem;
}

.form-grid.two-cols {
    grid-template-columns: 1fr 1fr;
}

@media (max-width: 640px) {
    .form-grid.two-cols {
        grid-template-columns: 1fr;
    }
}

/* Form Group */
.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #525252;
    margin-bottom: 0.5rem;
}

.form-label .required {
    color: #EF4444;
    margin-left: 0.25rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: #F5F5F7;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0.75rem;
    color: #1a1a1a;
    font-size: 0.9375rem;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #737373;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #FF6B35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15);
}

.form-input.error,
.form-select.error,
.form-textarea.error {
    border-color: #EF4444;
}

.form-input.error:focus,
.form-select.error:focus,
.form-textarea.error:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2394a3b8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    padding-right: 2.5rem;
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-help {
    font-size: 0.75rem;
    color: #737373;
    margin-top: 0.375rem;
}

.form-error {
    font-size: 0.75rem;
    color: #EF4444;
    margin-top: 0.375rem;
}

/* Form Alert */
.form-alert {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
}

.form-alert.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.form-alert.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.form-alert.warning {
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.form-alert svg {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.form-alert.error svg { color: #EF4444; }
.form-alert.success svg { color: #22C55E; }
.form-alert.warning svg { color: #FBBF24; }

.form-alert-content {
    flex: 1;
}

.form-alert-title {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.form-alert.error .form-alert-title { color: #EF4444; }
.form-alert.success .form-alert-title { color: #22C55E; }
.form-alert.warning .form-alert-title { color: #FBBF24; }

.form-alert-text {
    font-size: 0.8125rem;
    color: #525252;
    line-height: 1.5;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 0.75rem;
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(0, 0, 0, 0.02);
}

@media (max-width: 480px) {
    .form-actions {
        flex-direction: column-reverse;
    }
}

.btn-cancel {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #525252;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: 0.75rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-cancel:hover {
    background: rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.15);
    color: #1a1a1a;
}

.btn-submit {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, #FF6B35 0%, #F59E0B 100%);
    border: none;
    color: white;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.35);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.45);
}

.btn-submit svg {
    width: 1.125rem;
    height: 1.125rem;
}

/* ==========================================================================
   4. DELETE PAGE STYLES
   ========================================================================== */

.delete-content-area {
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-height: calc(100vh - 64px);
}

@media (max-width: 768px) {
    .delete-content-area { padding: 1.25rem; }
}

@media (max-width: 1024px) {
    .delete-content-area { min-height: calc(100vh - 64px - 52px); }
}

.delete-container {
    width: 100%;
    max-width: 480px;
}

.delete-card {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.delete-header {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(220, 38, 38, 0.1) 100%);
    border-bottom: 1px solid rgba(239, 68, 68, 0.2);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.delete-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.delete-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    background: rgba(239, 68, 68, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.delete-icon svg {
    width: 2rem;
    height: 2rem;
    color: #EF4444;
}

.delete-title {
    font-family: 'Clash Display', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.delete-subtitle {
    color: #525252;
    font-size: 0.9375rem;
    position: relative;
    z-index: 1;
}

.delete-body {
    padding: 1.5rem;
}

.object-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #F5F5F7;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0.875rem;
    margin-bottom: 1.5rem;
}

.object-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(239, 68, 68, 0.15);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.object-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #EF4444;
}

.object-details h3 {
    font-family: 'Clash Display', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.125rem;
}

.object-details p {
    font-size: 0.8125rem;
    color: #64748b;
}

.warning-box {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
}

.warning-box svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #FBBF24;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.warning-content { flex: 1; }

.warning-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #FBBF24;
    margin-bottom: 0.25rem;
}

.warning-text {
    font-size: 0.8125rem;
    color: #94a3b8;
    line-height: 1.5;
}

.related-items { margin-top: 1rem; }

.related-items-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #94a3b8;
    margin-bottom: 0.5rem;
}

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

.related-items-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: #64748b;
    padding: 0.375rem 0;
}

.related-items-list li svg {
    width: 1rem;
    height: 1rem;
    color: #EF4444;
    flex-shrink: 0;
}

.delete-actions {
    display: flex;
    flex-direction: column-reverse;
    gap: 0.75rem;
    padding: 1.5rem;
    border-top: 1px solid rgba(71, 85, 105, 0.2);
}

@media (min-width: 480px) {
    .delete-actions { flex-direction: row; }
}

.btn-delete {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    border: none;
    color: white;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.35);
}

.btn-delete:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.45);
}

.btn-delete svg {
    width: 1.125rem;
    height: 1.125rem;
}

/* Help Text */
.help-text {
    text-align: center;
    font-size: 0.8125rem;
    color: #64748b;
    margin-top: 1.5rem;
}

.help-text a {
    color: #94a3b8;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.help-text a:hover { color: #FF6B35; }

/* ==========================================================================
   5. DASHBOARD SPECIFIC STYLES
   ========================================================================== */

/* Tab Content */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

/* Section Header with Button */
.section-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.section-title {
    font-family: 'Clash Display', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
}

.btn-add {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: linear-gradient(135deg, #FF6B35 0%, #F59E0B 100%);
    color: white;
    font-weight: 600;
    font-size: 0.8125rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
}

.btn-add:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.btn-add svg { width: 1rem; height: 1rem; }

/* Subscription Card */
.subscription-card {
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(71, 85, 105, 0.25);
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}

.subscription-card:hover {
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.subscription-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(30, 41, 59, 0.3);
    border-bottom: 1px solid rgba(71, 85, 105, 0.25);
}

.subscription-title-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.subscription-name {
    font-family: 'Clash Display', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 0.375rem 0.75rem;
    border-radius: 2rem;
}

.status-badge.active {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.status-badge.active::before {
    content: '';
    width: 0.375rem;
    height: 0.375rem;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.status-badge.trialing {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.status-badge.pending {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
}

.status-badge.past_due {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.status-badge.canceled {
    background: rgba(100, 116, 139, 0.15);
    color: #64748b;
}

.subscription-meta {
    font-size: 0.75rem;
    color: #64748b;
}

.subscription-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: #fff;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    padding: 0.5rem 0.875rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-outline:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: #FF6B35;
}

.btn-outline svg { width: 0.875rem; height: 0.875rem; color: #FF6B35; }

.subscription-body {
    padding: 1.25rem;
}

.subscription-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.info-block h4 {
    font-size: 0.6875rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 0.375rem 0;
    border-bottom: 1px solid rgba(71, 85, 105, 0.15);
}

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

.info-label { color: #94a3b8; font-size: 0.8125rem; }
.info-value { color: #fff; font-size: 0.875rem; font-weight: 500; }

.location-info {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.location-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(168, 85, 247, 0.15);
    border-radius: 0.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.location-icon svg { width: 1.125rem; height: 1.125rem; color: #a855f7; }

.location-details h5 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.25rem;
}

.location-details p {
    font-size: 0.8125rem;
    color: #94a3b8;
    line-height: 1.4;
}

/* Entity Cards (Companies, Locations) */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
}

@media (max-width: 640px) {
    .cards-grid { grid-template-columns: 1fr; }
}

.entity-card {
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(71, 85, 105, 0.25);
    border-radius: 0.875rem;
    padding: 1.25rem;
    transition: all 0.3s ease;
}

.entity-card:hover {
    border-color: rgba(255, 107, 53, 0.3);
    background: rgba(15, 23, 42, 0.7);
}

.entity-header {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    margin-bottom: 1rem;
}

.entity-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.entity-icon.blue { background: rgba(59, 130, 246, 0.15); }
.entity-icon.blue svg { color: #3b82f6; }

.entity-icon.purple { background: rgba(168, 85, 247, 0.15); }
.entity-icon.purple svg { color: #a855f7; }

.entity-icon svg { width: 1.5rem; height: 1.5rem; }

.entity-info h3 {
    font-family: 'Clash Display', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.125rem;
}

.entity-info p {
    font-size: 0.8125rem;
    color: #64748b;
}

.entity-details { margin-bottom: 1rem; }

.entity-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: #94a3b8;
    margin-bottom: 0.375rem;
}

.entity-detail svg {
    width: 1rem;
    height: 1rem;
    color: #64748b;
    flex-shrink: 0;
}

.entity-actions {
    display: flex;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(71, 85, 105, 0.2);
}

.entity-btn {
    flex: 1;
    padding: 0.625rem 0.75rem;
    font-size: 0.8125rem;
    font-weight: 500;
    border-radius: 0.5rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}

.entity-btn.secondary {
    background: rgba(71, 85, 105, 0.2);
    color: #94a3b8;
}

.entity-btn.secondary:hover {
    background: rgba(71, 85, 105, 0.3);
    color: #fff;
}

.entity-btn.primary {
    background: rgba(255, 107, 53, 0.15);
    color: #FF6B35;
}

.entity-btn.primary:hover {
    background: rgba(255, 107, 53, 0.25);
}

.entity-btn.danger {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.entity-btn.danger:hover {
    background: rgba(239, 68, 68, 0.2);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(15, 23, 42, 0.3);
    border: 2px dashed rgba(71, 85, 105, 0.3);
    border-radius: 1rem;
}

.empty-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    background: rgba(71, 85, 105, 0.2);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.empty-icon svg { width: 2rem; height: 2rem; color: #64748b; }

.empty-state h3 {
    font-family: 'Clash Display', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.empty-state p {
    color: #94a3b8;
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* ROI Calculator */
.roi-container { max-width: 600px; margin: 0 auto; }

.roi-card {
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(71, 85, 105, 0.25);
    border-radius: 1rem;
    overflow: hidden;
}

.roi-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(251, 191, 36, 0.08) 100%);
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.roi-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
}

.roi-header h2 {
    font-family: 'Clash Display', sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.25rem;
    position: relative;
}

.roi-header p {
    color: #94a3b8;
    font-size: 0.875rem;
    position: relative;
}

.roi-body {
    padding: 1.5rem;
}

.roi-input-group { margin-bottom: 1.5rem; }

.roi-input-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.625rem;
}

.roi-input-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #cbd5e1;
}

.roi-input-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: #FF6B35;
}

.roi-slider {
    width: 100%;
    height: 0.375rem;
    background: rgba(71, 85, 105, 0.4);
    border-radius: 0.5rem;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.roi-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 1.25rem;
    height: 1.25rem;
    background: linear-gradient(135deg, #FF6B35, #F59E0B);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.4);
}

.roi-slider::-moz-range-thumb {
    width: 1.25rem;
    height: 1.25rem;
    background: linear-gradient(135deg, #FF6B35, #F59E0B);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.4);
}

.roi-slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.375rem;
    font-size: 0.6875rem;
    color: #64748b;
}

.roi-results {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.08) 0%, rgba(16, 185, 129, 0.05) 100%);
    border-top: 1px solid rgba(34, 197, 94, 0.2);
}

.roi-results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    text-align: center;
}

.roi-result-item p {
    font-size: 0.8125rem;
    color: #94a3b8;
    margin-bottom: 0.25rem;
}

.roi-result-value {
    font-family: 'Clash Display', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #22c55e;
}

.roi-result-value.negative { color: #ef4444; }

.roi-cta {
    text-align: center;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid rgba(34, 197, 94, 0.15);
}

.roi-cta p {
    color: #94a3b8;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

/* Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-card {
    background: rgba(30, 41, 59, 0.98);
    border: 1px solid rgba(71, 85, 105, 0.3);
    border-radius: 1rem;
    max-width: 400px;
    width: 100%;
    padding: 1.5rem;
    text-align: center;
}

.modal-icon {
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto 1rem;
    background: rgba(239, 68, 68, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-icon svg { width: 1.5rem; height: 1.5rem; color: #ef4444; }

.modal-card h3 {
    font-family: 'Clash Display', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.modal-card p {
    color: #94a3b8;
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
}

.modal-actions {
    display: flex;
    gap: 0.75rem;
}

.modal-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 0.625rem;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    text-align: center;
    border: none;
}

.modal-btn.cancel {
    background: rgba(71, 85, 105, 0.3);
    color: #94a3b8;
}

.modal-btn.cancel:hover {
    background: rgba(71, 85, 105, 0.5);
    color: #fff;
}

.modal-btn.delete {
    background: #ef4444;
    color: white;
}

.modal-btn.delete:hover {
    background: #dc2626;
}
/* ==========================================================================
   AUTH PAGES - Login / Signup / Register Styles
   Add this section to app-styles.css
   ========================================================================== */

/* Auth Layout - Split screen */
.auth-layout {
    display: flex;
    min-height: calc(100vh - 64px);
}

@media (max-width: 1024px) {
    .auth-layout {
        flex-direction: column;
    }
}

/* ==================== AUTH HERO (Left side - Desktop) ==================== */
.auth-hero {
    flex: 1;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

/* Hide on mobile */
@media (max-width: 1024px) {
    .auth-hero {
        display: none;
    }
}

/* Background decoration */
.auth-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 60%);
    border-radius: 50%;
}

.auth-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 60%);
    border-radius: 50%;
}

.auth-hero-content {
    position: relative;
    z-index: 1;
    max-width: 480px;
}

/* Hero Logo */
.auth-hero-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.auth-hero-logo-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #FF6B35, #F59E0B);
    border-radius: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.auth-hero-logo-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: white;
}

.auth-hero-logo-text {
    font-family: 'Clash Display', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.auth-hero-logo-text span {
    background: linear-gradient(135deg, #FF6B35, #F59E0B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Title */
.auth-hero-title {
    font-family: 'Clash Display', sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.auth-hero-title .text-gradient {
    background: linear-gradient(135deg, #FF6B35, #F59E0B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auth-hero-subtitle {
    font-size: 1.125rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Hero Features List */
.auth-hero-features {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.auth-hero-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.auth-hero-feature-icon {
    width: 1.5rem;
    height: 1.5rem;
    background: rgba(34, 197, 94, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.auth-hero-feature-icon svg {
    width: 0.875rem;
    height: 0.875rem;
    color: #22c55e;
}

.auth-hero-feature-text {
    font-size: 0.9375rem;
    color: #cbd5e1;
}

/* Hero Stats (for login page) */
.auth-hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(71, 85, 105, 0.3);
}

.auth-hero-stat-value {
    font-family: 'Clash Display', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #FF6B35;
    margin-bottom: 0.25rem;
}

.auth-hero-stat-label {
    font-size: 0.8125rem;
    color: #94a3b8;
}

/* ==================== AUTH FORM SECTION (Right side) ==================== */
.auth-form-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: #f8fafc;
}

@media (max-width: 1024px) {
    .auth-form-section {
        min-height: calc(100vh - 64px);
        padding: 1.5rem;
    }
}

.auth-form-container {
    width: 100%;
    max-width: 420px;
}

/* Mobile Logo */
.auth-mobile-logo {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    margin-bottom: 2rem;
}

@media (max-width: 1024px) {
    .auth-mobile-logo {
        display: flex;
    }
}

.auth-mobile-logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #FF6B35, #F59E0B);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.35);
}

.auth-mobile-logo-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.auth-mobile-logo-text {
    font-family: 'Clash Display', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
}

.auth-mobile-logo-text span {
    background: linear-gradient(135deg, #FF6B35, #F59E0B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==================== AUTH CARD ==================== */
.auth-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.auth-card-header {
    padding: 1.75rem 2rem 0;
    text-align: center;
}

.auth-card-title {
    font-family: 'Clash Display', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.375rem;
}

.auth-card-subtitle {
    font-size: 0.9375rem;
    color: #64748b;
}

.auth-card-body {
    padding: 1.5rem 2rem 2rem;
}

.auth-card-footer {
    padding: 1.25rem 2rem;
    background: #f8fafc;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    text-align: center;
}

.auth-card-footer-text {
    font-size: 0.875rem;
    color: #64748b;
}

.auth-card-footer-link {
    color: #FF6B35;
    font-weight: 600;
    text-decoration: none;
    margin-left: 0.25rem;
}

.auth-card-footer-link:hover {
    color: #e85a2a;
    text-decoration: underline;
}

/* ==================== AUTH ALERT ==================== */
.auth-alert {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
}

.auth-alert.error {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.auth-alert.success {
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.auth-alert-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.auth-alert.error .auth-alert-icon { color: #ef4444; }
.auth-alert.success .auth-alert-icon { color: #22c55e; }

.auth-alert-content {
    flex: 1;
}

.auth-alert-title {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.auth-alert.error .auth-alert-title { color: #dc2626; }
.auth-alert.success .auth-alert-title { color: #16a34a; }

.auth-alert-text {
    font-size: 0.8125rem;
    color: #525252;
    line-height: 1.5;
}

/* ==================== AUTH FORM ==================== */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

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

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

.auth-form-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: 0.5rem;
}

.auth-form-label .required {
    color: #ef4444;
    margin-left: 0.125rem;
}

.auth-form-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.auth-form-link {
    font-size: 0.8125rem;
    color: #FF6B35;
    text-decoration: none;
    font-weight: 500;
}

.auth-form-link:hover {
    color: #e85a2a;
    text-decoration: underline;
}

.auth-form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.625rem;
    color: #1e293b;
    font-size: 0.9375rem;
    font-family: inherit;
    transition: all 0.2s ease;
}

.auth-form-input::placeholder {
    color: #94a3b8;
}

.auth-form-input:focus {
    outline: none;
    border-color: #FF6B35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.12);
    background: #fff;
}

.auth-form-input.error {
    border-color: #ef4444;
}

.auth-form-input.error:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

/* Checkbox */
.auth-form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin: 0.25rem 0;
}

.auth-form-checkbox input[type="checkbox"] {
    width: 1.125rem;
    height: 1.125rem;
    accent-color: #FF6B35;
    cursor: pointer;
}

.auth-form-checkbox label {
    font-size: 0.875rem;
    color: #475569;
    cursor: pointer;
}

/* Terms */
.auth-form-terms {
    font-size: 0.8125rem;
    color: #64748b;
    line-height: 1.5;
    text-align: center;
    margin-top: 0.5rem;
}

.auth-form-terms a {
    color: #FF6B35;
    text-decoration: none;
    font-weight: 500;
}

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

/* Submit Button */
.auth-form-submit {
    width: 100%;
    padding: 0.9375rem 1.5rem;
    background: linear-gradient(135deg, #FF6B35 0%, #F59E0B 100%);
    border: none;
    color: white;
    font-weight: 700;
    font-size: 0.9375rem;
    border-radius: 0.625rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.35);
    margin-top: 0.5rem;
}

.auth-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.45);
}

.auth-form-submit:active {
    transform: translateY(0);
}

/* ==================== HELP TEXT ==================== */
.auth-help-text {
    text-align: center;
    font-size: 0.8125rem;
    color: #94a3b8;
    margin-top: 1.5rem;
}

.auth-help-link {
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    margin-left: 0.25rem;
}

.auth-help-link:hover {
    color: #FF6B35;
    text-decoration: underline;
}