:root {
    --primary: #3B82F6;
    --primary-dark: #2563EB;
    --primary-light: #93C5FD;
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    --info: #3B82F6;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    --gray-900: #0F172A;
    --sidebar-width: 260px;
    --topbar-height: 64px;
    --radius: 8px;
    --radius-sm: 4px;
    --shadow: 0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.06);
    --shadow-md: 0 4px 6px rgba(0,0,0,.1), 0 2px 4px rgba(0,0,0,.06);
    --shadow-lg: 0 10px 15px rgba(0,0,0,.1), 0 4px 6px rgba(0,0,0,.05);
    --transition: .2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--gray-800);
    background: var(--gray-100);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }

/* Layout */
.app-layout { display: flex; min-height: 100vh; }

.sidebar {
    width: var(--sidebar-width);
    background: var(--gray-900);
    color: #fff;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: -280px; /* Start hidden off-screen */
    height: 100vh;
    z-index: 1000;
    transition: left var(--transition);
}

/* When sidebar is open */
.sidebar.open {
    left: 0;
}

/* When sidebar is open */
.sidebar.open {
    left: 0;
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
}

.sidebar-logo-icon { width: 28px; height: 28px; color: var(--primary); }

.sidebar-toggle {
    background: none;
    border: none;
    color: var(--gray-400);
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
}

.sidebar-toggle:hover { background: rgba(255,255,255,.1); color: #fff; }
.sidebar-toggle svg { width: 20px; height: 20px; }

.sidebar-nav {
    flex: 1;
    padding: 12px 0;
}

.nav-label {
    padding: 12px 20px 4px;
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-500);
    font-weight: 600;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    color: var(--gray-300);
    transition: all var(--transition);
    font-size: .9rem;
    border: none;
    background: none;
    width: 100%;
    cursor: pointer;
    text-align: left;
}

.nav-item svg { width: 20px; height: 20px; flex-shrink: 0; }
.nav-item:hover { background: rgba(255,255,255,.08); color: #fff; }
.nav-item.active { background: rgba(59,130,246,.15); color: var(--primary-light); }
.nav-item--logout:hover { color: var(--danger); }

.nav-item-form { width: 100%; }

.sidebar-footer {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 8px 0;
}

/* Main Content */
.main-content {
    flex: 1;
    margin-left: var(--sidebar-width);
    min-height: 100vh;
}

.topbar {
    height: var(--topbar-height);
    background: #fff;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    position: sticky;
    top: 0;
    z-index: 50;
}

.topbar-left { display: flex; align-items: center; gap: 16px; flex: 1; }

.topbar-mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--gray-600);
}

.topbar-mobile-toggle svg { width: 24px; height: 24px; }

.search-box {
    position: relative;
    max-width: 400px;
    width: 100%;
}

.search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--gray-400);
}

.search-input {
    width: 100%;
    padding: 8px 12px 8px 40px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: .875rem;
    background: var(--gray-50);
    transition: all var(--transition);
    outline: none;
}

.search-input:focus { border-color: var(--primary); background: #fff; box-shadow: 0 0 0 3px rgba(59,130,246,.1); }

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: none;
    z-index: 200;
    max-height: 400px;
    overflow-y: auto;
}

.search-results.show { display: block; }

.topbar-right { display: flex; align-items: center; gap: 16px; }

.topbar-btn {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--gray-600);
    border-radius: var(--radius-sm);
}

.topbar-btn:hover { background: var(--gray-100); color: var(--gray-800); }
.topbar-btn svg { width: 22px; height: 22px; }

.notif-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    background: var(--danger);
    color: #fff;
    font-size: .65rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

.topbar-user { text-align: right; }

.topbar-user-name {
    display: block;
    font-size: .875rem;
    font-weight: 600;
    color: var(--gray-800);
}

.topbar-user-role {
    font-size: .75rem;
    color: var(--gray-500);
}

/* Content area */
.content { padding: 24px; max-width: 1400px; }

/* Page header */
.page-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 24px;
    gap: 16px;
    flex-wrap: wrap;
}

.page-title { font-size: 1.5rem; font-weight: 700; color: var(--gray-900); }
.page-subtitle { font-size: .875rem; color: var(--gray-500); margin-top: 2px; }

.page-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

/* Cards */
.card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--gray-200);
    gap: 12px;
    flex-wrap: wrap;
}

.card-title { font-size: 1rem; font-weight: 600; color: var(--gray-800); }
.card-body { padding: 20px; }

/* Stats grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.stat-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon svg { width: 24px; height: 24px; }
.stat-icon--blue { background: #EFF6FF; color: var(--primary); }
.stat-icon--green { background: #ECFDF5; color: var(--success); }
.stat-icon--yellow { background: #FFFBEB; color: var(--warning); }
.stat-icon--purple { background: #F5F3FF; color: #8B5CF6; }

.stat-body { display: flex; flex-direction: column; gap: 2px; }
.stat-value { font-size: 1.75rem; font-weight: 700; color: var(--gray-900); }
.stat-label { font-size: .875rem; color: var(--gray-500); }

.stat-link {
    font-size: .8rem;
    color: var(--primary);
    margin-top: auto;
}

.stat-link:hover { color: var(--primary-dark); }

/* Dashboard grid */
.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Tables */
.table-responsive { overflow-x: auto; }

.table {
    width: 100%;
    border-collapse: collapse;
    font-size: .875rem;
}

.table th {
    text-align: left;
    padding: 10px 12px;
    font-weight: 600;
    color: var(--gray-600);
    text-transform: uppercase;
    font-size: .75rem;
    letter-spacing: .5px;
    border-bottom: 2px solid var(--gray-200);
    white-space: nowrap;
}

.table td {
    padding: 12px;
    border-bottom: 1px solid var(--gray-100);
    vertical-align: middle;
}

.table tr:hover td { background: var(--gray-50); }

.table-link { color: var(--gray-800); font-weight: 500; }
.table-link:hover { color: var(--primary); }
.table-sub { display: block; color: var(--gray-500); font-size: .8rem; margin-top: 2px; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: var(--radius);
    font-size: .875rem;
    font-weight: 500;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1.4;
}

.btn--primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn--primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); }

.btn--secondary { background: #fff; color: var(--gray-700); border-color: var(--gray-300); }
.btn--secondary:hover { background: var(--gray-50); border-color: var(--gray-400); }

.btn--ghost { background: transparent; color: var(--gray-600); border-color: transparent; }
.btn--ghost:hover { background: var(--gray-100); color: var(--gray-800); }

.btn--success { background: var(--success); color: #fff; }
.btn--success:hover { background: #059669; }

.btn--danger { background: var(--danger); color: #fff; }
.btn--danger:hover { background: #DC2626; }

.btn--sm { padding: 4px 10px; font-size: .8rem; }
.btn--lg { padding: 12px 24px; font-size: 1rem; }
.btn--full { width: 100%; }

/* Forms */
.form { max-width: 800px; }

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group { margin-bottom: 16px; }

.form-label {
    display: block;
    font-size: .875rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.form-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: .9rem;
    transition: all var(--transition);
    outline: none;
    background: #fff;
    font-family: inherit;
    color: var(--gray-800);
}

.form-input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(59,130,246,.1); }
.form-input--sm { padding: 6px 10px; font-size: .85rem; }
.form-input--lg { padding: 14px 16px; font-size: 1.05rem; }
textarea.form-input { resize: vertical; min-height: 80px; }
select.form-input { cursor: pointer; }

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: .9rem;
    color: var(--gray-700);
}

.form-checkbox input[type="checkbox"] { width: 18px; height: 18px; cursor: pointer; }

.form-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-200);
}

/* Alerts */
.alert {
    padding: 12px 16px;
    border-radius: var(--radius);
    font-size: .875rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.alert--success { background: #ECFDF5; color: #065F46; border: 1px solid #A7F3D0; }
.alert--error { background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA; }
.alert--warning { background: #FFFBEB; color: #92400E; border: 1px solid #FDE68A; }
.alert--info { background: #EFF6FF; color: #1E40AF; border: 1px solid #BFDBFE; }

.alert-list { margin: 0; padding-left: 20px; }
.alert-list li { margin-bottom: 2px; }
.alert-close { background: none; border: none; font-size: 1.25rem; cursor: pointer; opacity: .7; padding: 0 4px; }
.alert-close:hover { opacity: 1; }

/* Badges & Status */
.badge {
    display: inline-flex;
    padding: 2px 8px;
    border-radius: 9999px;
    font-size: .75rem;
    font-weight: 600;
    background: var(--gray-100);
    color: var(--gray-700);
}

.status-badge {
    display: inline-flex;
    padding: 3px 10px;
    border-radius: 9999px;
    font-size: .75rem;
    font-weight: 600;
    text-transform: capitalize;
}

.status-badge--active { background: #ECFDF5; color: #065F46; }
.status-badge--inactive { background: var(--gray-100); color: var(--gray-600); }
.status-badge--lead { background: #FFFBEB; color: #92400E; }
.status-badge--new { background: #EFF6FF; color: #1E40AF; }
.status-badge--contacted { background: #F5F3FF; color: #6D28D9; }
.status-badge--qualified { background: #ECFDF5; color: #065F46; }
.status-badge--lost { background: #FEF2F2; color: #991B1B; }
.status-badge--open { background: #EFF6FF; color: #1E40AF; }
.status-badge--won { background: #ECFDF5; color: #065F46; }

/* Activity list */
.activity-list { display: flex; flex-direction: column; gap: 8px; }

.activity-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    border-radius: var(--radius);
    background: var(--gray-50);
    border-left: 3px solid var(--gray-300);
    flex-wrap: wrap;
}

.activity-item--overdue { border-left-color: var(--danger); background: #FEF2F2; }
.activity-item--high { border-left-color: var(--danger); }
.activity-item--medium { border-left-color: var(--warning); }
.activity-item--low { border-left-color: var(--success); }

.activity-type {
    display: inline-flex;
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    flex-shrink: 0;
}

.activity-type--call { background: #F5F3FF; color: #6D28D9; }
.activity-type--email { background: #EFF6FF; color: #1E40AF; }
.activity-type--meeting { background: #FFFBEB; color: #92400E; }
.activity-type--task { background: #ECFDF5; color: #065F46; }
.activity-type--note { background: var(--gray-100); color: var(--gray-700); }

.activity-info { flex: 1; }
.activity-info strong { display: block; font-size: .9rem; color: var(--gray-800); }
.activity-info small { color: var(--gray-500); font-size: .8rem; }
.activity-desc { color: var(--gray-600); font-size: .85rem; margin-top: 4px; }

.activity-time { color: var(--gray-500); font-size: .8rem; flex-shrink: 0; }

.activity-item-left { display: flex; gap: 12px; flex: 1; align-items: flex-start; }
.activity-item-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.activity-priority {
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 2px 6px;
    border-radius: var(--radius-sm);
}

.activity-priority--high { background: #FEF2F2; color: #DC2626; }
.activity-priority--medium { background: #FFFBEB; color: #D97706; }
.activity-priority--low { background: #ECFDF5; color: #059669; }

.activity-actions { display: flex; gap: 4px; }

.activity-date { font-size: .8rem; color: var(--gray-500); white-space: nowrap; }

/* Empty state */
.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: var(--gray-500);
}

.empty-state p { margin-bottom: 12px; }

/* Detail list */
.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.detail-list { display: grid; grid-template-columns: auto 1fr; gap: 8px 16px; }
.detail-list dt { font-weight: 600; color: var(--gray-600); font-size: .85rem; }
.detail-list dd { color: var(--gray-800); font-size: .9rem; }

/* Section */
.section-title { font-size: 1rem; font-weight: 600; color: var(--gray-800); margin-bottom: 8px; }

/* Tabs */
.tabs { display: flex; gap: 0; }

.tab {
    padding: 8px 20px;
    font-size: .875rem;
    font-weight: 500;
    color: var(--gray-600);
    border-bottom: 2px solid transparent;
    transition: all var(--transition);
    text-decoration: none;
}

.tab:hover { color: var(--gray-800); }
.tab.active { color: var(--primary); border-bottom-color: var(--primary); }

/* Contact list */
.contact-list { display: flex; flex-direction: column; gap: 8px; }

.contact-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: var(--radius);
    background: var(--gray-50);
}

.contact-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.contact-card div { flex: 1; }
.contact-card strong { display: block; font-size: .9rem; }
.contact-card small { display: block; color: var(--gray-500); font-size: .8rem; }

/* Pipeline board */
.pipeline-board {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    align-items: start;
}

.pipeline-column {
    background: var(--gray-100);
    border-radius: var(--radius);
    min-height: 200px;
}

.pipeline-column-header {
    border-top: 3px solid;
    padding: 12px 16px;
    background: #fff;
    border-radius: var(--radius) var(--radius) 0 0;
}

.pipeline-column-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: .9rem;
}

.pipeline-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.pipeline-count {
    background: var(--gray-200);
    color: var(--gray-600);
    font-size: .75rem;
    padding: 1px 8px;
    border-radius: 9999px;
    margin-left: auto;
}

.pipeline-column-total { font-size: .8rem; color: var(--gray-500); margin-top: 4px; }

.pipeline-column-body {
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pipeline-empty { text-align: center; padding: 20px; color: var(--gray-400); font-size: .85rem; }

.pipeline-card {
    display: block;
    background: #fff;
    border-radius: var(--radius);
    padding: 12px;
    box-shadow: var(--shadow);
    text-decoration: none;
    color: inherit;
    transition: box-shadow var(--transition);
}

.pipeline-card:hover { box-shadow: var(--shadow-md); }

.pipeline-card-title { font-weight: 600; font-size: .875rem; color: var(--gray-800); margin-bottom: 4px; }
.pipeline-card-company { font-size: .8rem; color: var(--gray-500); margin-bottom: 8px; }
.pipeline-card-footer { display: flex; justify-content: space-between; align-items: center; }
.pipeline-card-value { font-weight: 700; color: var(--gray-800); font-size: .9rem; }
.pipeline-card-prob { font-size: .75rem; color: var(--gray-500); }

/* Pagination */
.pagination {
    display: flex;
    gap: 4px;
    justify-content: center;
    margin-top: 16px;
}

.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 8px;
    border-radius: var(--radius);
    font-size: .875rem;
    color: var(--gray-600);
    background: #fff;
    border: 1px solid var(--gray-200);
    text-decoration: none;
}

.page-link:hover { border-color: var(--primary); color: var(--primary); }
.page-link.active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* Stage badge */
.stage-badge {
    display: inline-flex;
    padding: 4px 12px;
    border-radius: 9999px;
    color: #fff;
    font-size: .85rem;
    font-weight: 600;
}

/* Status chips */
.status-summary { display: flex; gap: 8px; flex-wrap: wrap; }
.status-chip {
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: .8rem;
    background: var(--gray-100);
    color: var(--gray-700);
}

/* Search */
.search-form { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.search-form-input { flex: 1; min-width: 200px; }

.search-large { display: flex; gap: 12px; align-items: center; }
.search-large .form-input { flex: 1; }

.search-results-list { display: flex; flex-direction: column; gap: 4px; }

.search-result-item {
    display: flex;
    flex-direction: column;
    padding: 10px 12px;
    border-radius: var(--radius);
    background: var(--gray-50);
    text-decoration: none;
    transition: background var(--transition);
}

.search-result-item:hover { background: var(--gray-100); }

.search-result-title { font-weight: 600; color: var(--gray-800); font-size: .9rem; }
.search-result-sub { font-size: .8rem; color: var(--gray-500); }

/* Pipeline overview */
.pipeline-overview {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.pipeline-stage-mini {
    flex-shrink: 0;
    min-width: 150px;
    padding: 12px;
    background: var(--gray-50);
    border-radius: var(--radius);
}

.stage-header { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.stage-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.stage-name { font-size: .85rem; font-weight: 600; }
.stage-count { margin-left: auto; font-size: .8rem; color: var(--gray-500); }
.stage-value { font-size: 1.1rem; font-weight: 700; color: var(--gray-800); }

/* Notifications panel */
.notif-panel {
    position: fixed;
    top: 0;
    right: -380px;
    width: 380px;
    height: 100vh;
    background: #fff;
    box-shadow: var(--shadow-lg);
    z-index: 300;
    transition: right var(--transition);
    display: flex;
    flex-direction: column;
}

.notif-panel.open { right: 0; }

.notif-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--gray-200);
}

.notif-panel-header h3 { font-size: 1rem; font-weight: 600; }

.notif-panel-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray-500);
    padding: 4px;
}

.notif-panel-body { flex: 1; overflow-y: auto; padding: 16px 20px; }

.notif-item {
    padding: 12px;
    border-radius: var(--radius);
    margin-bottom: 8px;
    background: var(--gray-50);
    cursor: pointer;
}

.notif-item:hover { background: var(--gray-100); }

.notif-empty { text-align: center; color: var(--gray-500); padding: 40px 0; }

/* Overlay */
.overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 999;
}

.overlay.show { display: block; }

/* Auth pages */
.auth-page {
    background: linear-gradient(135deg, var(--gray-900) 0%, #1E3A5F 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

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

.auth-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: 32px;
}

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

.auth-logo {
    width: 48px;
    height: 48px;
    color: var(--primary);
    margin-bottom: 12px;
}

.auth-title { font-size: 1.5rem; font-weight: 700; color: var(--gray-900); }
.auth-subtitle { color: var(--gray-500); font-size: .9rem; margin-top: 4px; }

.auth-form .form-group { margin-bottom: 20px; }

.auth-links {
    display: flex;
    justify-content: space-between;
    margin-top: 16px;
    font-size: .875rem;
}

.auth-link { color: var(--gray-500); }
.auth-link:hover { color: var(--primary); }

.auth-description { text-align: center; color: var(--gray-600); font-size: .9rem; margin-bottom: 24px; }

/* Margin/Spacing utilities */
.mt-3 { margin-top: 16px; }
.mt-4 { margin-top: 24px; }
