/* ============================================================================
   SMM-AI Control — design system (riproduzione fedele del prototipo .dc.html)
   Font: Hanken Grotesk + JetBrains Mono · accent #5b5bd6
   ========================================================================== */
:root {
  --accent: #5b5bd6;
  --accent-strong: #4a48c4;
  --accent-weak: #edecfb;
  --green: #0f9d6b;
  --green-bg: #e4f5ee;
  --amber: #cf8500;
  --amber-bg: #fbf0d9;
  --red: #e0484d;
  --red-bg: #fcebec;
  --blue: #2f7ef0;
  --blue-bg: #e7f0fe;
  --slate: #79828f;
  --slate-bg: #eef0f3;
  --border: #e9ebef;
  --text: #141821;
  --text-2: #5b6573;
  --text-3: #929aa7;
  --bg: #f5f6f8;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; height: 100%; }
body {
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  background: var(--bg);
  color: var(--text);
}
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-thumb { background: #d4d8df; border-radius: 8px; border: 3px solid transparent; background-clip: content-box; }
::-webkit-scrollbar-thumb:hover { background: #b9bfc9; background-clip: content-box; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .15; } }
@keyframes slideup { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

button { font-family: inherit; }
a { color: inherit; }
.mono { font-family: var(--mono); }
.tnum { font-variant-numeric: tabular-nums; }
.fade { animation: slideup .2s ease; }
.spinner { width: 16px; height: 16px; border: 2px solid var(--accent-weak); border-top-color: var(--accent); border-radius: 50%; animation: spin .7s linear infinite; }

/* ---------------------------------------------------------------- app frame */
#app { display: flex; height: 100vh; width: 100%; overflow: hidden; }

/* ------------------------------------------------------------------ sidebar */
.sidebar { width: 236px; flex-shrink: 0; background: #fff; border-right: 1px solid var(--border); display: flex; flex-direction: column; }
.brand { display: flex; align-items: center; gap: 11px; padding: 20px 20px 18px; }
.brand-logo { width: 34px; height: 34px; border-radius: 9px; background: linear-gradient(140deg,#5b5bd6,#7c6cf0); display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(91,91,214,.32); }
.brand-name { font-weight: 800; font-size: 15px; letter-spacing: -.3px; line-height: 1; }
.brand-name span { color: var(--accent); }
.brand-sub { font-size: 10.5px; color: var(--text-3); font-weight: 600; letter-spacing: .4px; margin-top: 3px; text-transform: uppercase; }
.nav-label { padding: 8px 12px 4px; font-size: 10.5px; font-weight: 700; color: #a3abb7; letter-spacing: .6px; text-transform: uppercase; }
.nav-label.first { margin-top: 4px; padding-top: 4px; }
nav.nav { display: flex; flex-direction: column; gap: 2px; padding: 6px 12px; }
.nav-item { display: flex; align-items: center; gap: 11px; width: 100%; padding: 9px 11px; border: none; border-radius: 10px; cursor: pointer; font-size: 13.5px; font-weight: 600; background: transparent; color: var(--text-2); transition: background .12s; }
.nav-item:hover { background: var(--bg); }
.nav-item.active { background: var(--accent-weak); color: var(--accent); font-weight: 700; }
.nav-item span.lbl { flex: 1; text-align: left; }
.nav-badge { font-size: 11px; font-weight: 800; padding: 1px 8px; border-radius: 20px; background: var(--slate-bg); color: var(--text-2); }
.nav-badge.alert { background: var(--red-bg); color: var(--red); }
.nav-badge.accent { background: var(--accent-weak); color: var(--accent); }

.sidebar-foot { margin-top: auto; padding: 14px 14px 16px; }
.system-panel { background: var(--bg); border: 1px solid var(--border); border-radius: 13px; padding: 13px 14px; }
.system-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 9px; }
.system-title { font-size: 11px; font-weight: 700; color: var(--text-2); letter-spacing: .3px; text-transform: uppercase; }
.system-rows { display: flex; flex-direction: column; gap: 7px; font-size: 12px; }
.system-row { display: flex; align-items: center; justify-content: space-between; }
.system-row span:first-child { color: var(--text-2); }
.user-row { display: flex; align-items: center; gap: 10px; padding: 11px 8px 2px; }
.user-av { width: 30px; height: 30px; border-radius: 50%; background: #2a2f3a; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; }

/* ------------------------------------------------------------------- topbar */
.main { flex: 1; display: flex; flex-direction: column; min-width: 0; }
.topbar { height: 64px; flex-shrink: 0; background: #fff; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 16px; padding: 0 22px; }
.screen-title { font-size: 17px; font-weight: 800; letter-spacing: -.4px; line-height: 1.1; white-space: nowrap; }
.screen-sub { font-size: 12px; color: var(--text-3); font-weight: 500; line-height: 1.2; margin-top: 2px; white-space: nowrap; max-width: 300px; overflow: hidden; text-overflow: ellipsis; }
.page-switcher { position: relative; margin-left: 8px; }
.ps-btn { display: flex; align-items: center; gap: 10px; background: var(--bg); border: 1px solid var(--border); border-radius: 11px; padding: 7px 11px 7px 8px; cursor: pointer; }
.ps-btn:hover { background: var(--slate-bg); }
.ps-av { width: 30px; height: 30px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; color: #fff; }
.ps-handle { display: block; font-size: 13px; font-weight: 700; line-height: 1.1; text-align: left; }
.ps-followers { display: block; font-size: 10.5px; color: var(--text-3); line-height: 1.3; text-align: left; }
.ps-menu { position: absolute; top: 50px; left: 0; width: 268px; background: #fff; border: 1px solid var(--border); border-radius: 14px; box-shadow: 0 16px 44px rgba(20,24,33,.16); padding: 7px; z-index: 60; animation: slideup .14s ease; }
.ps-menu-label { font-size: 10.5px; font-weight: 700; color: #a3abb7; letter-spacing: .5px; text-transform: uppercase; padding: 7px 9px 5px; }
.ps-row { display: flex; align-items: center; gap: 10px; width: 100%; padding: 8px 9px; border: none; background: transparent; border-radius: 9px; cursor: pointer; }
.ps-row:hover { background: var(--bg); }

.spacer { flex: 1; }
.btn { display: flex; align-items: center; gap: 8px; border-radius: 10px; padding: 9px 13px; cursor: pointer; font-size: 13px; font-weight: 700; border: 1px solid var(--border); background: #fff; color: var(--text); }
.btn:hover { background: var(--bg); }
.btn-run svg { stroke: var(--green); }
.dry-btn { display: flex; align-items: center; gap: 9px; border-radius: 10px; padding: 8px 13px; cursor: pointer; font-size: 13px; font-weight: 700; border: 1px solid var(--border); background: #fff; color: var(--text-2); }
.dry-btn.on { background: var(--blue-bg); border-color: #cfe0fb; color: var(--blue); }
.dry-switch { width: 30px; height: 18px; border-radius: 20px; background: #cfd4dc; position: relative; transition: background .15s; flex-shrink: 0; }
.dry-btn.on .dry-switch { background: var(--blue); }
.dry-knob { position: absolute; top: 2px; left: 2px; width: 14px; height: 14px; border-radius: 50%; background: #fff; transition: left .15s; }
.dry-btn.on .dry-knob { left: 14px; }
.kill-btn { display: flex; align-items: center; gap: 8px; border-radius: 10px; padding: 9px 14px; cursor: pointer; font-size: 13px; font-weight: 800; border: none; background: #11151c; color: #fff; }
.kill-btn.killed { background: var(--red); }
.kill-btn:hover { filter: brightness(.96); }
.icon-btn { width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--border); background: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; position: relative; }
.icon-btn:hover { background: var(--bg); }
.icon-btn .dot { position: absolute; top: 8px; right: 9px; width: 7px; height: 7px; border-radius: 50%; background: var(--red); border: 1.5px solid #fff; }

/* ------------------------------------------------------------------ content */
.content { flex: 1; overflow-y: auto; padding: 24px 26px 40px; }
.wrap { max-width: 1240px; margin: 0 auto; }
.card { background: #fff; border: 1px solid var(--border); border-radius: 16px; }
.card-pad { padding: 16px 18px; }
.card-title { font-size: 14.5px; font-weight: 800; letter-spacing: -.2px; }
.card-sub { font-size: 11.5px; color: var(--text-3); margin-top: 1px; }
.muted { color: var(--text-3); }
.link-btn { font-size: 12.5px; font-weight: 700; color: var(--accent); background: transparent; border: none; cursor: pointer; display: flex; align-items: center; gap: 4px; }

/* pills */
.pill { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 800; padding: 2px 9px; border-radius: 20px; }
.pill-green { background: var(--green-bg); color: var(--green); }
.pill-amber { background: var(--amber-bg); color: var(--amber); }
.pill-red { background: var(--red-bg); color: var(--red); }
.pill-slate { background: var(--slate-bg); color: var(--slate); }
.pill-blue { background: var(--blue-bg); color: var(--blue); }
.pill-accent { background: var(--accent-weak); color: var(--accent); }
.pill .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.pill .dot.live { animation: blink 1.1s ease-in-out infinite; }

/* toggle switch (settings/publishing) */
.switch { width: 42px; height: 24px; border-radius: 20px; background: #cfd4dc; position: relative; cursor: pointer; transition: background .15s; flex-shrink: 0; }
.switch.on { background: var(--accent); }
.switch .knob { position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; border-radius: 50%; background: #fff; transition: left .15s; box-shadow: 0 1px 3px rgba(0,0,0,.18); }
.switch.on .knob { left: 21px; }

/* KPI */
.kpi-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-bottom: 16px; }
.kpi { background: #fff; border: 1px solid var(--border); border-radius: 15px; padding: 16px 17px; }
.kpi-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 13px; }
.kpi-icon { width: 30px; height: 30px; border-radius: 9px; display: flex; align-items: center; justify-content: center; }
.kpi-value { font-size: 28px; font-weight: 800; letter-spacing: -.6px; line-height: 1; font-variant-numeric: tabular-nums; }
.kpi-label { font-size: 12.5px; color: var(--text-2); font-weight: 500; margin-top: 5px; }

/* rows / list */
.row-list { display: flex; flex-direction: column; }
.lrow { display: flex; align-items: center; gap: 14px; padding: 13px 18px; border-top: 1px solid #f1f3f5; }
.lrow.click { cursor: pointer; }
.lrow.click:hover { background: #fafbfc; }
.dotwrap { width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.dotwrap .dot { width: 8px; height: 8px; border-radius: 50%; }
.dotwrap .dot.live { animation: pulse 1.6s ease-in-out infinite; }

/* activity */
.activity-row { display: flex; gap: 13px; padding: 9px 0; align-items: flex-start; }
.activity-dot { width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* segmented tabs */
.seg { display: flex; gap: 4px; background: var(--bg); border: 1px solid #eef0f3; border-radius: 11px; padding: 4px; }
.seg-btn { flex: 1; border: none; background: transparent; border-radius: 8px; padding: 7px 10px; font-size: 12.5px; font-weight: 700; color: var(--text-2); cursor: pointer; }
.seg-btn.active { background: #fff; color: var(--text); box-shadow: 0 1px 3px rgba(20,24,33,.08); }

/* monospace log stream */
.logstream { background: #fbfbfc; padding: 14px 18px; font-family: var(--mono); font-size: 12px; line-height: 1.5; max-height: 360px; overflow-y: auto; }
.logline { display: flex; gap: 12px; padding: 2px 0; }
.logline .t { flex-shrink: 0; color: #b3bac4; width: 70px; }
.logline .lvl { flex-shrink: 0; font-weight: 700; width: 44px; text-transform: uppercase; }
.logline .lvl.info { color: var(--blue); }
.logline .lvl.warning, .logline .lvl.warn { color: var(--amber); }
.logline .lvl.error { color: var(--red); }
.logline .lvl.ok { color: var(--green); }
.logline .m { color: #3a414c; word-break: break-word; }

/* form-ish field display */
.field-label { font-size: 11.5px; font-weight: 700; color: var(--text-3); margin-bottom: 6px; }
.field-box { border: 1px solid var(--border); border-radius: 9px; padding: 9px 11px; font-size: 13px; font-weight: 700; }
.field-box.mono { font-family: var(--mono); }
.code-box { display: flex; align-items: center; gap: 10px; background: #f7f8fa; border: 1px solid var(--border); border-radius: 10px; padding: 10px 12px; font-family: var(--mono); font-size: 12.5px; color: #3a414c; }

/* database table */
.db-filters { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.chip { display: flex; align-items: center; gap: 7px; border: 1px solid var(--border); background: #fff; border-radius: 9px; padding: 7px 12px; font-size: 12.5px; font-weight: 700; color: var(--text-2); cursor: pointer; }
.chip:hover { filter: brightness(.98); }
.chip.active { background: var(--text); color: #fff; border-color: var(--text); }
.chip .n { font-size: 11px; font-weight: 800; padding: 0 6px; border-radius: 20px; background: var(--slate-bg); color: var(--text-2); }
.chip.active .n { background: rgba(255,255,255,.2); color: #fff; }
.search-box { display: flex; align-items: center; gap: 9px; background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 8px 12px; min-width: 220px; }
.search-box input { border: none; outline: none; font-family: inherit; font-size: 12.5px; flex: 1; background: transparent; color: var(--text); }
.db-grid { display: grid; grid-template-columns: 1fr 130px 96px 92px 120px; gap: 14px; }
.db-head { padding: 10px 16px; background: #fafbfc; border-bottom: 1px solid #eef0f3; font-size: 11px; font-weight: 800; color: var(--text-3); letter-spacing: .3px; text-transform: uppercase; }
.db-row { padding: 12px 16px; border-top: 1px solid #f3f4f6; align-items: center; cursor: pointer; }
.db-row:hover { background: #fafbfc; }
.incl-btn { display: inline-flex; align-items: center; gap: 5px; border: 1px solid var(--border); background: #fff; border-radius: 8px; padding: 4px 9px; font-size: 11.5px; font-weight: 700; color: var(--text-2); cursor: pointer; }
.incl-btn.excluded { color: var(--slate); }

/* drawer */
.scrim { position: fixed; inset: 0; background: rgba(20,24,33,.34); z-index: 90; }
.drawer { position: fixed; top: 0; right: 0; bottom: 0; width: 440px; max-width: 92vw; background: #fff; z-index: 91; box-shadow: -12px 0 40px rgba(20,24,33,.16); display: flex; flex-direction: column; animation: slideup .18s ease; }
.drawer-head { display: flex; align-items: flex-start; gap: 12px; padding: 18px 20px; border-bottom: 1px solid #eef0f3; }
.drawer-body { flex: 1; overflow-y: auto; padding: 16px 20px; }
.drawer-foot { display: flex; gap: 10px; padding: 14px 20px; border-top: 1px solid #eef0f3; }
.checkbox { width: 22px; height: 22px; flex-shrink: 0; border-radius: 6px; border: 1.5px solid #cdd2da; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.checkbox.on { background: var(--accent); border-color: var(--accent); }
.field-row { display: flex; align-items: flex-start; gap: 12px; padding: 11px 13px; border-top: 1px solid #f3f4f6; }
.field-row:first-child { border-top: none; }
.x-btn { width: 32px; height: 32px; flex-shrink: 0; border-radius: 9px; border: 1px solid var(--border); background: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.x-btn:hover { background: var(--bg); }
.btn-dark { border: none; background: #11151c; color: #fff; border-radius: 10px; padding: 10px 14px; font-size: 13px; font-weight: 800; cursor: pointer; }
.btn-dark:hover { filter: brightness(1.12); }

/* settings */
.cfg-grid { display: grid; grid-template-columns: 218px 1fr; gap: 20px; align-items: start; }
.cfg-nav { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 9px; position: sticky; top: 0; }
.cfg-nav-item { display: flex; align-items: center; gap: 10px; width: 100%; padding: 9px 11px; border: none; background: transparent; border-radius: 10px; font-size: 13px; font-weight: 600; color: var(--text-2); cursor: pointer; }
.cfg-nav-item:hover { background: var(--bg); }
.cfg-nav-item.active { background: var(--accent-weak); color: var(--accent); font-weight: 700; }
.cfg-section-title { font-size: 15px; font-weight: 800; letter-spacing: -.2px; }
.cfg-section-sub { font-size: 12.5px; color: var(--text-3); margin-top: 3px; margin-bottom: 18px; }
.cfg-row { display: flex; align-items: center; justify-content: space-between; padding: 13px 0; border-top: 1px solid #f1f3f5; gap: 16px; }
.cfg-row .lbl { font-size: 13.5px; font-weight: 700; }
.cfg-row .desc { font-size: 12px; color: var(--text-3); margin-top: 2px; }

/* toasts */
.toasts { position: fixed; bottom: 22px; right: 22px; display: flex; flex-direction: column; gap: 10px; z-index: 200; }
.toast { background: #11151c; color: #fff; padding: 12px 16px; border-radius: 11px; font-size: 13px; font-weight: 600; box-shadow: 0 10px 30px rgba(20,24,33,.28); animation: slideup .18s ease; max-width: 340px; }
.toast.error { background: var(--red); }
.toast.ok { background: var(--green); }

/* modal */
.modal-scrim { position: fixed; inset: 0; background: rgba(20,24,33,.4); backdrop-filter: blur(2px); display: flex; align-items: center; justify-content: center; z-index: 100; animation: slideup .14s ease; }
.modal { background: #fff; border-radius: 18px; width: 420px; max-width: 90vw; padding: 24px; box-shadow: 0 24px 60px rgba(20,24,33,.28); }
.modal-icon { width: 46px; height: 46px; border-radius: 13px; display: flex; align-items: center; justify-content: center; }
.modal-title { font-size: 18px; font-weight: 800; letter-spacing: -.3px; margin-top: 14px; }
.modal-body { font-size: 13.5px; color: var(--text-2); line-height: 1.5; margin-top: 7px; }
.modal-actions { display: flex; gap: 10px; margin-top: 20px; }
.modal-actions button { flex: 1; padding: 11px; border-radius: 11px; font-weight: 700; font-size: 13.5px; cursor: pointer; }
.btn-cancel { border: 1px solid var(--border); background: #fff; color: var(--text); }
.btn-cancel:hover { background: var(--bg); }

/* wizard */
.wiz-scrim { position: fixed; inset: 0; background: rgba(20,24,33,.5); backdrop-filter: blur(3px); z-index: 120; display: flex; align-items: center; justify-content: center; padding: 32px; animation: slideup .16s ease; }
.wiz { background: #f5f6f8; border-radius: 20px; width: 920px; max-width: 96vw; height: 640px; max-height: 92vh; display: flex; overflow: hidden; box-shadow: 0 30px 80px rgba(20,24,33,.34); }
.wiz-rail { width: 230px; flex-shrink: 0; background: #fff; border-right: 1px solid var(--border); padding: 22px 18px; display: flex; flex-direction: column; gap: 4px; }
.wiz-rail-title { font-size: 15px; font-weight: 800; letter-spacing: -.3px; margin-bottom: 16px; }
.wiz-step-item { display: flex; align-items: center; gap: 11px; padding: 9px 10px; border-radius: 10px; font-size: 13px; font-weight: 600; color: var(--text-3); }
.wiz-step-item.active { background: var(--accent-weak); color: var(--accent); font-weight: 700; }
.wiz-step-item.done { color: var(--green); }
.wiz-step-num { width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800; background: var(--slate-bg); color: var(--text-2); flex-shrink: 0; }
.wiz-step-item.active .wiz-step-num { background: var(--accent); color: #fff; }
.wiz-step-item.done .wiz-step-num { background: var(--green); color: #fff; }
.wiz-main { flex: 1; display: flex; flex-direction: column; min-width: 0; }
.wiz-body { flex: 1; overflow-y: auto; padding: 28px 30px; }
.wiz-h { font-size: 20px; font-weight: 800; letter-spacing: -.3px; }
.wiz-sub { font-size: 13px; color: var(--text-2); margin-top: 6px; line-height: 1.5; margin-bottom: 20px; }
.wiz-foot { display: flex; align-items: center; gap: 10px; padding: 16px 30px; border-top: 1px solid var(--border); background: #fff; }
.wiz-input { width: 100%; border: 1px solid var(--border); border-radius: 11px; padding: 11px 13px; font-family: inherit; font-size: 13.5px; outline: none; }
.wiz-input:focus { border-color: var(--accent); }
.wiz-input.mono { font-family: var(--mono); font-size: 12.5px; }
.wiz-label { font-size: 12px; font-weight: 700; color: var(--text-2); margin: 14px 0 6px; }
.wiz-note { display: flex; gap: 10px; background: #fff; border: 1px solid var(--border); border-radius: 11px; padding: 12px 14px; font-size: 12.5px; color: var(--text-2); line-height: 1.5; margin-bottom: 10px; }
.wiz-scope { display: inline-block; font-family: var(--mono); font-size: 12px; font-weight: 600; background: var(--accent-weak); color: var(--accent-strong); padding: 5px 10px; border-radius: 8px; margin: 0 6px 6px 0; }
.wiz-page-row { display: flex; align-items: center; gap: 12px; width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: 12px; background: #fff; cursor: pointer; margin-bottom: 8px; text-align: left; }
.wiz-page-row.sel { border-color: var(--accent); background: var(--accent-weak); }

/* empty state */
.empty { text-align: center; padding: 40px 20px; color: var(--text-3); }
.empty svg { stroke: #c7cdd6; margin-bottom: 10px; }

/* ------------------------------------------------------------------- login */
.login-wrap { display: flex; align-items: center; justify-content: center; height: 100vh; width: 100%; background: radial-gradient(1200px 600px at 50% -10%, #ecebfb, var(--bg)); }
.login-card { width: 380px; max-width: 92vw; background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 30px 30px 26px; box-shadow: 0 24px 60px rgba(20,24,33,.12); animation: slideup .2s ease; }
.login-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.login-title { font-size: 19px; font-weight: 800; letter-spacing: -.3px; }
.login-field { margin-bottom: 14px; }
.login-field label { display: block; font-size: 12px; font-weight: 700; color: var(--text-2); margin-bottom: 6px; }
.login-field input { width: 100%; border: 1px solid var(--border); border-radius: 11px; padding: 11px 13px; font-family: inherit; font-size: 14px; outline: none; transition: border-color .12s; }
.login-field input:focus { border-color: var(--accent); }
.login-btn { width: 100%; margin-top: 6px; padding: 12px; border: none; border-radius: 11px; background: var(--accent); color: #fff; font-family: inherit; font-size: 14px; font-weight: 800; cursor: pointer; }
.login-btn:hover { background: var(--accent-strong); }
.login-btn:disabled { opacity: .6; cursor: default; }
.login-error { background: var(--red-bg); color: var(--red); border-radius: 10px; padding: 10px 12px; font-size: 12.5px; font-weight: 600; margin-bottom: 14px; }
