:root { --navy:#07162e; --navy2:#10294f; --gold:#d5ae62; --paper:#f5f7fb; --ink:#122036; --line:#dfe5ef; --ok:#1b7f55; --danger:#a73c3c; }
* { box-sizing:border-box; }
body { margin:0; font-family:Inter,Segoe UI,Arial,sans-serif; background:var(--paper); color:var(--ink); }
.auth-body { min-height:100vh; display:grid; place-items:center; background:linear-gradient(135deg,var(--navy),var(--navy2)); padding:24px; }
.auth-card { width:min(430px,100%); background:#fff; border-radius:20px; padding:38px; box-shadow:0 24px 70px #0005; }
.brand-mark { width:56px; height:56px; border-radius:14px; display:grid; place-items:center; background:var(--navy); color:var(--gold); font-weight:800; letter-spacing:-2px; }
h1,h2,p { margin-top:0; } h1 { font-size:clamp(30px,5vw,44px); margin-bottom:12px; } h2 { font-size:20px; }
.eyebrow { text-transform:uppercase; letter-spacing:.14em; font-size:12px; font-weight:800; color:#8b6a2a; margin-top:18px; }
.muted { color:#65738b; }
.stack { display:grid; gap:18px; margin-top:28px; }
label { display:grid; gap:8px; font-weight:700; font-size:14px; }
input { width:100%; border:1px solid var(--line); border-radius:10px; padding:12px 14px; font-size:16px; outline:none; }
input:focus { border-color:#7086aa; box-shadow:0 0 0 3px #35558f1a; }
.btn { border:0; border-radius:10px; padding:11px 17px; font-weight:800; cursor:pointer; text-decoration:none; display:inline-flex; align-items:center; justify-content:center; }
.btn:disabled { opacity:.6; cursor:not-allowed; }
.primary { background:var(--navy); color:#fff; } .success { background:var(--ok); color:#fff; margin-top:8px; }
.ghost { background:#ffffff12; color:#fff; border:1px solid #ffffff33; }
.alert { padding:12px 14px; border-radius:10px; margin:16px 0; } .error { background:#fff0f0; color:#842525; }
.topbar { background:var(--navy); color:#fff; min-height:64px; padding:0 clamp(20px,5vw,64px); display:flex; align-items:center; justify-content:space-between; }
.topbar span { color:#b9c3d2; }
.container { max-width:1120px; margin:0 auto; padding:38px 22px 60px; }
.hero { padding:20px 4px 28px; } .hero p:last-child { max-width:720px; color:#65738b; }
.card { background:#fff; border:1px solid var(--line); border-radius:16px; padding:24px; margin-bottom:22px; box-shadow:0 8px 28px #15223b0d; }
.card-head { display:flex; gap:20px; justify-content:space-between; align-items:center; }
.progress-wrap { margin-top:26px; border-top:1px solid var(--line); padding-top:22px; }
.progress-line { display:flex; justify-content:space-between; gap:20px; margin-bottom:10px; }
.bar { height:12px; background:#e8edf5; border-radius:999px; overflow:hidden; } #bar-value { height:100%; width:0; background:var(--gold); transition:width .3s ease; }
.hidden { display:none!important; }
.table-wrap { overflow-x:auto; } table { width:100%; border-collapse:collapse; } th,td { text-align:left; padding:13px 12px; border-bottom:1px solid var(--line); font-size:14px; } th { color:#536278; font-size:12px; text-transform:uppercase; letter-spacing:.05em; }
.badge { display:inline-block; border-radius:999px; padding:5px 9px; font-size:12px; font-weight:800; background:#eef1f6; }
.badge.completed { color:#126342; background:#e4f5ed; } .badge.failed { color:#8f2929; background:#fdeaea; } .badge.running { color:#71550e; background:#fff3cf; }
@media (max-width:650px){ .card-head { align-items:stretch; flex-direction:column; } .card-head .btn { width:100%; } .auth-card { padding:28px; } }
