/*
====================================================================
File: /css/site.css
Last Modified: 2026-03-22 20:30:00 America/New_York
====================================================================
*/

:root {
    --primary: #5b6cff;
    --secondary: #ff7eb6;
    --accent: #66d1c1;
    --surface: #ffffff;
    --background: #f7f7fb;
    --text: #273043;
    --muted: #667085;
    --border: #dde3ee;
    --danger: #dc2626;
    --radius: 18px;
    --shadow: 0 14px 28px rgba(18, 38, 63, 0.08);
}
* { box-sizing: border-box; }
body { margin:0; font-family: Arial, Helvetica, sans-serif; color:var(--text); background:var(--background); }
a { color:var(--primary); text-decoration:none; }
a:hover { text-decoration:underline; }
.shell { max-width:1180px; margin:0 auto; padding:24px; }
.site-header { display:flex; align-items:center; justify-content:space-between; gap:16px; margin-bottom:24px; flex-wrap:wrap; }
.card,.portal-card,.feature-card,.stat-card,.form-card { background:var(--surface); border:1px solid var(--border); border-radius:var(--radius); box-shadow:var(--shadow); padding:20px; }
.grid-3,.portal-grid,.feature-grid,.dashboard-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(260px, 1fr)); gap:20px; }
.grid-2 { display:grid; grid-template-columns:repeat(auto-fit, minmax(320px, 1fr)); gap:20px; }
.hero { text-align:center; margin-bottom:28px; }
.portal-subtitle,.muted { color:var(--muted); }
.button,button,input[type=submit] { display:inline-block; border:0; border-radius:999px; padding:11px 18px; background:var(--primary); color:#fff; font-weight:700; cursor:pointer; text-decoration:none; }
.button-light { background:#eef2ff; color:var(--primary); }
.button-danger { background:var(--danger); }
input[type=text],input[type=password],input[type=email],input[type=number],select,textarea { width:100%; border:1px solid var(--border); border-radius:12px; padding:12px 14px; background:#fff; color:var(--text); margin-top:6px; }
label { display:block; margin-bottom:14px; font-weight:700; }
textarea { min-height:120px; resize:vertical; }
.table-wrap { overflow-x:auto; }
table { width:100%; border-collapse:collapse; background:var(--surface); border-radius:16px; overflow:hidden; }
th,td { padding:14px 12px; border-bottom:1px solid var(--border); text-align:left; vertical-align:top; }
th { background:#f8faff; }
.flash { padding:14px 16px; border-radius:14px; margin-bottom:16px; }
.flash-success { background:#ecfdf3; color:#065f46; }
.flash-warning { background:#fffbeb; color:#92400e; }
.flash-danger { background:#fef2f2; color:#991b1b; }
.kicker { text-transform:uppercase; letter-spacing:.08em; font-size:.82rem; color:var(--muted); }
.tag { display:inline-block; padding:6px 10px; border-radius:999px; background:#eef2ff; color:var(--primary); font-size:.85rem; font-weight:700; margin-right:8px; margin-bottom:8px; }
.login-shell { max-width:520px; min-height:100vh; display:grid; place-items:center; margin:0 auto; padding:24px; }
.login-card { width:100%; }
.utility-row { display:flex; gap:12px; flex-wrap:wrap; align-items:center; justify-content:flex-end; }
.safe-note { background:#eefdf8; border:1px solid #d1fae5; border-radius:16px; padding:16px; margin-top:18px; }
