/* ==================== GLOBAL STYLES ==================== */

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

:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --border-color: #dee2e6;
    --shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    background: #f5f5f5;
}

/* ==================== NAVBAR ==================== */

.navbar {
    background: #2c3e50;
    color: white;
    padding: 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.navbar-brand h1 {
    font-size: 22px;
    font-weight: 600;
    margin: 15px 0;
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
}

.nav-link {
    color: white;
    text-decoration: none;
    padding: 15px 15px;
    display: block;
    transition: background 0.2s;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav-user {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 15px;
}

.username {
    color: white;
    font-weight: 500;
}

.logout {
    background: #dc3545;
    border-radius: 4px;
    padding: 8px 15px;
    font-size: 13px;
}

.logout:hover {
    background: #c82333;
}

/* ==================== CONTAINER ==================== */

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 20px;
    min-height: calc(100vh - 200px);
}

/* ==================== TYPOGRAPHY ==================== */

h1, h2, h3, h4, h5, h6 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
}

h1 {
    font-size: 32px;
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 18px;
}

p {
    margin-bottom: 10px;
}

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

a:hover {
    text-decoration: underline;
}

/* ==================== PAGE HEADER ==================== */

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

.page-header h1 {
    margin-bottom: 5px;
}

.page-header p {
    color: #666;
    font-size: 16px;
}

/* ==================== ALERTS ==================== */

.alert {
    padding: 15px 20px;
    border-radius: 4px;
    margin-bottom: 20px;
    border-left: 4px solid;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.alert-danger {
    background: #f8d7da;
    border-left-color: #dc3545;
    color: #721c24;
}

.alert-success {
    background: #d4edda;
    border-left-color: #28a745;
    color: #155724;
}

.alert-warning {
    background: #fff3cd;
    border-left-color: #ffc107;
    color: #856404;
}

.alert-info {
    background: #d1ecf1;
    border-left-color: #17a2b8;
    color: #0c5460;
}

.alert-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: inherit;
    opacity: 0.7;
    padding: 0;
}

.alert-close:hover {
    opacity: 1;
}

/* ==================== BUTTONS ==================== */

.btn {
    display: inline-block;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    text-decoration: none;
    text-align: center;
}

.btn:hover {
    text-decoration: none;
}

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

.btn-primary:hover {
    background: #0056b3;
}

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

.btn-secondary:hover {
    background: #545b62;
}

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

.btn-success:hover {
    background: #218838;
}

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

.btn-danger:hover {
    background: #c82333;
}

.btn-warning {
    background: var(--warning-color);
    color: #333;
}

.btn-warning:hover {
    background: #e0a800;
}

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

.btn-info:hover {
    background: #138496;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-sm {
    padding: 5px 10px;
    font-size: 12px;
}

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

/* ==================== FORMS ==================== */

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}

.form-control {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

select.form-control {
    cursor: pointer;
}

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

/* ==================== CONTENT SECTION ==================== */

.content-section {
    background: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.content-section h2 {
    margin-bottom: 20px;
}

/* ==================== TABLE ==================== */

.table-container {
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th {
    background: var(--light-color);
    padding: 15px;
    text-align: left;
    border-bottom: 2px solid var(--border-color);
    font-weight: 600;
    color: #495057;
}

td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--border-color);
}

tr:hover {
    background: #fafafa;
}

/* ==================== LOGIN PAGE ==================== */

.login-page {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.login-container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

.login-box {
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.login-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px 20px;
    text-align: center;
}

.login-header h1 {
    color: white;
    font-size: 24px;
    margin-bottom: 10px;
}

.login-header p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.login-form {
    padding: 30px;
}

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

.login-form .btn {
    margin-top: 10px;
}

.login-footer {
    background: var(--light-color);
    padding: 15px;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.login-footer p {
    margin: 0;
    font-size: 12px;
    color: #666;
}

/* ==================== LOADING SPINNER ==================== */

.spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-left: 8px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ==================== FOOTER ==================== */

.footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

.footer p {
    margin: 0;
}

/* ==================== RESPONSIVE ==================== */

@media (max-width: 768px) {
    .navbar-container {
        flex-direction: column;
        gap: 10px;
    }
    
    .navbar-menu {
        width: 100%;
        flex-direction: column;
    }
    
    .nav-link {
        padding: 10px 15px;
    }
    
    .nav-user {
        width: 100%;
        margin-left: 0;
        justify-content: space-between;
    }
    
    .container {
        padding: 15px 10px;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .table-container {
        font-size: 12px;
    }
    
    th, td {
        padding: 10px;
    }
    
    .controls-bar {
        flex-direction: column;
    }
    
    .controls-bar input,
    .controls-bar select {
        width: 100%;
    }
}

/* ==================== UTILITY CLASSES ==================== */

.text-center {
    text-align: center;
}

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

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 5px;
}

.mb-2 {
    margin-bottom: 10px;
}

.mb-3 {
    margin-bottom: 15px;
}

.mt-1 {
    margin-top: 5px;
}

.mt-2 {
    margin-top: 10px;
}

.mt-3 {
    margin-top: 15px;
}

.no-wrap {
    white-space: nowrap;
}

/* CashApp Admin web application layer */
:root {
    --primary: #16a34a;
    --primary-dark: #166534;
    --primary-soft: #dcfce7;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --pending: #0f766e;
    --canvas: #f8fafc;
    --surface: #ffffff;
    --ink: #1e293b;
    --muted: #64748b;
    --subtle: #94a3b8;
    --line: #e2e8f0;
    --sidebar: #182431;
    --radius: 10px;
    --shadow-card: 0 1px 2px rgba(15, 23, 42, .04), 0 4px 12px rgba(15, 23, 42, .04);
}

body {
    min-width: 320px;
    color: var(--ink);
    background-color: var(--canvas);
    background-image: linear-gradient(rgba(22, 163, 74, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(22, 163, 74, .025) 1px, transparent 1px);
    background-size: 28px 28px;
    font-family: "DM Sans", Roboto, sans-serif;
    line-height: 1.5;
}

button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid rgba(22, 163, 74, .32); outline-offset: 2px; }
[hidden] { display: none !important; }

.app-shell { min-height: 100dvh; display: grid; grid-template-columns: 252px minmax(0, 1fr); }
.app-sidebar { position: sticky; top: 0; height: 100dvh; display: flex; flex-direction: column; padding: 18px 12px; color: #dbe7e2; background: var(--sidebar); }
.app-brand { display: flex; align-items: center; gap: 10px; min-height: 44px; padding: 0 10px; color: white; font-size: 17px; text-decoration: none; }
.app-brand:hover { color: white; text-decoration: none; }
.brand-mark { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 8px; color: #052e16; background: #86efac; }
.brand-mark svg { width: 18px; height: 18px; }
.sidebar-nav { display: flex; flex: 1; flex-direction: column; gap: 3px; margin-top: 32px; }
.nav-label { margin: 20px 10px 7px; color: #b8cac3; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.side-link { display: flex; align-items: center; gap: 11px; min-height: 40px; padding: 9px 10px; border-radius: 7px; color: #b8cac3; font-size: 14px; font-weight: 500; text-decoration: none; }
.side-link:hover { color: white; background: rgba(255, 255, 255, .07); text-decoration: none; }
.side-link.is-active { color: white; background: rgba(22, 163, 74, .88); }
.side-link-danger:hover { color: #fecaca; background: rgba(239, 68, 68, .12); }
.side-link svg { width: 18px; height: 18px; stroke-width: 1.9; }
.sidebar-footer { display: flex; flex-direction: column; gap: 3px; padding-top: 14px; border-top: 1px solid rgba(255, 255, 255, .08); }
.app-main { min-width: 0; }
.app-topbar { position: sticky; z-index: 200; top: 0; display: flex; align-items: center; min-height: 64px; padding: 0 32px; border-bottom: 1px solid var(--line); background: rgba(255, 255, 255, .88); backdrop-filter: blur(12px); }
.topbar-spacer { flex: 1; }
.admin-identity { display: flex; align-items: center; gap: 9px; color: #475569; font-size: 13px; font-weight: 600; }
.identity-avatar { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; color: #166534; background: var(--primary-soft); font-size: 12px; }
.app-content { max-width: 1440px; margin: 0 auto; padding: 32px; }
.mobile-menu-toggle, .sidebar-backdrop { display: none; }
.icon-button { display: inline-grid; place-items: center; width: 36px; height: 36px; padding: 0; border: 1px solid var(--line); border-radius: 7px; color: #475569; background: white; }
.icon-button:hover { color: var(--primary-dark); border-color: #bbf7d0; background: #f0fdf4; }
.icon-button svg { width: 18px; height: 18px; }

.page-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 26px; }
.page-kicker { margin: 0 0 5px; color: var(--primary-dark); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.page-heading h1 { margin: 0; color: var(--ink); font-size: 28px; font-weight: 700; line-height: 1.25; }
.page-heading p { margin: 6px 0 0; color: var(--muted); font-size: 14px; }
.button-row { display: flex; flex-wrap: wrap; gap: 8px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 38px; padding: 8px 13px; border: 1px solid transparent; border-radius: 7px; font-size: 13px; font-weight: 600; box-shadow: none; }
.btn-primary, .btn-success { color: white; background: var(--primary); }
.btn-primary:hover, .btn-success:hover { color: white; background: var(--primary-dark); }
.btn-secondary, .btn-outline { color: #475569; border-color: var(--line); background: white; }
.btn-secondary:hover, .btn-outline:hover { color: var(--primary-dark); border-color: #bbf7d0; background: #f0fdf4; }
.btn-danger { color: white; background: var(--danger); }
.btn-danger:hover { color: white; background: #dc2626; }
.btn.is-loading { pointer-events: none; }
.btn.is-loading::before { width: 14px; height: 14px; border: 2px solid currentColor; border-right-color: transparent; border-radius: 50%; content: ""; animation: spin .7s linear infinite; }
.danger-button:hover { color: #b91c1c; border-color: #fecaca; background: #fef2f2; }

.app-card, .content-section, .table-container { border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-card); background: var(--surface); }
.content-section { padding: 20px; }
.table-container { overflow: auto; }
.table-container table { min-width: 720px; }
th { padding: 12px 16px; border-bottom: 1px solid var(--line); color: #64748b; background: #f8fafc; font-size: 11px; font-weight: 700; letter-spacing: .055em; text-transform: uppercase; }
td { padding: 14px 16px; border-bottom: 1px solid #edf2f7; color: #334155; font-size: 13px; }
tr:last-child td { border-bottom: 0; }
tr:hover { background: #f8fffa; }
.clickable-row { cursor: pointer; }
.clickable-row:focus-visible { position: relative; z-index: 1; outline: 3px solid rgba(22, 163, 74, .32); outline-offset: -3px; }
.form-control { min-height: 40px; padding: 8px 11px; border-color: #cbd5e1; border-radius: 7px; color: var(--ink); background: #fff; }
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(22, 163, 74, .14); }

.stat-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.stat-card { position: relative; min-width: 0; padding: 17px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: var(--shadow-card); }
.stat-card-link { color: inherit; text-decoration: none; transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease; }
.stat-card-link:hover { border-color: #86efac; box-shadow: 0 6px 16px rgba(15, 23, 42, .10); text-decoration: none; transform: translateY(-2px); }
.stat-card-link:focus-visible { outline-offset: 3px; }
.stat-card::after { position: absolute; top: 0; right: 0; width: 46px; height: 3px; content: ""; background: var(--primary); }
.stat-card.pending::after { background: var(--warning); }
.stat-card.positive::after { background: var(--success); }
.stat-label { display: flex; align-items: center; gap: 8px; margin: 0; color: var(--muted); font-size: 12px; font-weight: 600; }
.stat-label svg { width: 16px; color: var(--primary); }
.stat-value { margin: 12px 0 3px; color: var(--ink); font-size: 25px; font-weight: 700; line-height: 1.15; }
.stat-note { margin: 0; color: var(--subtle); font-size: 12px; }
.dashboard-layout { display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: 16px; margin-top: 24px; }
.account-actions-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 16px; }
.chart-card { min-height: 322px; padding: 20px; }
.card-title { margin: 0; color: var(--ink); font-size: 16px; font-weight: 700; }
.card-subtitle { margin: 4px 0 0; color: var(--muted); font-size: 12px; }
.revenue-chart { display: block; width: 100%; height: 230px; margin-top: 22px; }
.profit-card { display: flex; flex-direction: column; justify-content: space-between; min-height: 180px; padding: 20px; }
.profit-value { margin: 10px 0; color: var(--primary); font-size: 30px; font-weight: 700; }
.status-badge { display: inline-flex; align-items: center; gap: 5px; min-height: 24px; padding: 3px 8px; border-radius: 999px; font-size: 11px; font-weight: 700; text-transform: capitalize; }
.status-badge.success { color: #047857; background: #d1fae5; }
.status-badge.pending { color: #b45309; background: #fef3c7; }
.status-badge.danger { color: #b91c1c; background: #fee2e2; }
.status-badge.neutral { color: #475569; background: #e2e8f0; }
.state-panel { display: grid; min-height: 290px; place-items: center; padding: 32px; text-align: center; border: 1px dashed #cbd5e1; border-radius: var(--radius); color: var(--muted); background: rgba(255,255,255,.72); }
.state-panel svg { width: 28px; height: 28px; margin-bottom: 10px; color: var(--primary); }
.wallet-grid { display: grid; gap: 12px; }
.wallet-card { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; }
.wallet-card-main { min-width: 0; flex: 1; }
.wallet-card-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.wallet-address { display: block; margin-top: 14px; padding: 10px 12px; overflow-wrap: anywhere; border: 1px solid var(--line); border-radius: 7px; color: #475569; background: #f8fafc; font: 12px/1.5 ui-monospace, SFMono-Regular, Menlo, monospace; }
.wallet-actions { display: flex; flex-wrap: wrap; gap: 7px; flex: 0 0 auto; }
.modal { position: fixed; z-index: 1100; inset: 0; display: grid; place-items: center; padding: 20px; background: rgba(15, 23, 42, .48); }
.modal-content { width: min(100%, 540px); max-height: calc(100dvh - 40px); overflow: auto; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: 0 20px 48px rgba(15, 23, 42, .22); }
.modal-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding-bottom: 16px; margin-bottom: 20px; border-bottom: 1px solid var(--line); }
.checkbox-field { display: flex; align-items: center; gap: 9px; margin: 4px 0 20px; color: #475569; font-size: 13px; font-weight: 600; }
.modal-actions { justify-content: flex-end; }
.skeleton { border-radius: 6px; background: linear-gradient(90deg, #f1f5f9 25%, #f8fafc 37%, #f1f5f9 63%); background-size: 400% 100%; animation: shimmer 1.2s ease infinite; }
@keyframes shimmer { 0% { background-position: 100% 0; } 100% { background-position: -100% 0; } }
.toast-region { position: fixed; z-index: 1000; top: 18px; right: 18px; display: grid; gap: 8px; width: min(360px, calc(100vw - 36px)); }
.toast { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 14px; border: 1px solid var(--line); border-left: 4px solid var(--primary); border-radius: 8px; color: #334155; background: white; box-shadow: 0 12px 24px rgba(15,23,42,.12); font-size: 13px; font-weight: 500; animation: toast-in .2s ease-out; }
.toast-close { padding: 0; border: 0; color: #64748b; background: transparent; font: inherit; font-size: 12px; font-weight: 700; }
.toast-close:hover { color: var(--ink); text-decoration: underline; }
.toast-success { border-left-color: var(--success); }.toast-error { border-left-color: var(--danger); }.toast-warning { border-left-color: var(--warning); }
@keyframes toast-in { from { transform: translateY(-8px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

@media (max-width: 1024px) { .app-shell { grid-template-columns: minmax(0, 1fr); }.app-sidebar { position: fixed; z-index: 500; width: 252px; transform: translateX(-100%); transition: transform .2s ease; }.app-sidebar.is-open { transform: translateX(0); }.sidebar-backdrop { position: fixed; z-index: 400; inset: 0; background: rgba(15, 23, 42, .38); }.app-sidebar.is-open ~ .sidebar-backdrop { display: block; }.mobile-menu-toggle { display: inline-grid; }.stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }.dashboard-layout { grid-template-columns: 1fr; } }
@media (max-width: 1024px) { .account-actions-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .account-actions-grid > :last-child { grid-column: 1 / -1; } }
@media (max-width: 680px) { .app-topbar { min-height: 58px; padding: 0 16px; }.app-content { padding: 22px 16px; }.page-heading { flex-direction: column; gap: 14px; margin-bottom: 20px; }.page-heading h1 { font-size: 24px; }.stat-grid, .account-actions-grid { grid-template-columns: 1fr; gap: 9px; }.account-actions-grid > :last-child { grid-column: auto; }.stat-card { padding: 14px; }.stat-value { font-size: 21px; }.chart-card { min-height: 280px; padding: 16px; }.revenue-chart { height: 190px; }.admin-identity > span:last-child { display: none; }.wallet-card { flex-direction: column; }.wallet-actions { width: 100%; }.wallet-actions .icon-button { flex: 1; }.modal { padding: 12px; }.modal-content { padding: 20px; }.modal-actions .btn { flex: 1; }.form-control { font-size: 16px; } }

.login-page { min-height: 100dvh; height: auto; padding: 24px; background-color: #ecfdf3; background-image: linear-gradient(135deg, rgba(22, 163, 74, .10), transparent 45%), linear-gradient(rgba(22, 163, 74, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(22, 163, 74, .045) 1px, transparent 1px); background-size: auto, 30px 30px, 30px 30px; }
.login-container { max-width: 430px; padding: 0; }
.login-box { overflow: visible; border: 1px solid #dbe6df; border-radius: 12px; box-shadow: 0 18px 42px rgba(21, 50, 33, .12); }
.login-header { padding: 30px 30px 12px; color: var(--ink); text-align: left; background: white; }
.login-header .brand-mark { display: grid; width: 36px; height: 36px; margin-bottom: 26px; }
.login-header h1 { margin: 0; color: var(--ink); font-size: 26px; }
.login-header p:not(.page-kicker) { margin-top: 8px; color: var(--muted); }
.login-form { padding: 18px 30px 28px; background: white; }
.login-form .form-group { margin-bottom: 17px; }
.login-form label { color: #475569; font-size: 13px; font-weight: 600; }
.login-form .form-control { min-height: 44px; }
.login-footer { padding: 13px 30px; border-top: 1px solid var(--line); color: var(--muted); background: #f8fafc; font-size: 12px; text-align: left; }
.login-error { margin: 0 0 14px; padding: 10px 11px; border: 1px solid #fecaca; border-radius: 7px; color: #b91c1c; background: #fef2f2; font-size: 13px; }
.login-form .btn { width: 100%; min-height: 43px; }
