/* Ported from Verificer.AI.Agent.API/backoffice-console-mockup.html */

:root{
  --bg:#f2f6f3;
  --surface:#ffffff;
  --surface-2:#eaf0eb;
  --border:#dbe4de;
  --border-strong:#c2d0c8;
  --text:#10231c;
  --text-muted:#5c6f67;
  --text-faint:#8ea297;
  --accent:#0d8a5f;
  --accent-strong:#086b49;
  --accent-soft:#e1f4ea;
  --success:#1c9c6b;
  --success-soft:#e2f6ec;
  --warning:#a9720f;
  --warning-soft:#faecd2;
  --critical:#c23f3f;
  --critical-soft:#fbe4e4;
  --info:#2f6fc4;
  --info-soft:#e4edfb;
  --shadow:rgba(16,35,28,0.10);
  --focus:#0d8a5f;
}
@media (prefers-color-scheme: dark){
  :root:not([data-theme="light"]){
    --bg:#0b1512;
    --surface:#111f1a;
    --surface-2:#0d1916;
    --border:#213530;
    --border-strong:#2c463d;
    --text:#e7f2ec;
    --text-muted:#94aaa1;
    --text-faint:#5f766c;
    --accent:#39d99a;
    --accent-strong:#6be8b5;
    --accent-soft:#123527;
    --success:#39d99a;
    --success-soft:#0f2e21;
    --warning:#e3ab52;
    --warning-soft:#392b13;
    --critical:#ea6f6f;
    --critical-soft:#3a1c1c;
    --info:#72aaf0;
    --info-soft:#152841;
    --shadow:rgba(0,0,0,0.45);
    --focus:#39d99a;
  }
}
:root[data-theme="dark"]{
  --bg:#0b1512;
  --surface:#111f1a;
  --surface-2:#0d1916;
  --border:#213530;
  --border-strong:#2c463d;
  --text:#e7f2ec;
  --text-muted:#94aaa1;
  --text-faint:#5f766c;
  --accent:#39d99a;
  --accent-strong:#6be8b5;
  --accent-soft:#123527;
  --success:#39d99a;
  --success-soft:#0f2e21;
  --warning:#e3ab52;
  --warning-soft:#392b13;
  --critical:#ea6f6f;
  --critical-soft:#3a1c1c;
  --info:#72aaf0;
  --info-soft:#152841;
  --shadow:rgba(0,0,0,0.45);
  --focus:#39d99a;
}

*{box-sizing:border-box;}
html, body{ max-width:100%; overflow-x:hidden; }
body{
  background:var(--bg);
  color:var(--text);
  font-family:"IBM Plex Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size:13px;
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
  margin:0;
}
::selection{ background:var(--accent-soft); color:var(--accent-strong); }
a{ color:var(--accent-strong); }
button{ font-family:inherit; }
:focus-visible{ outline:2px solid var(--focus); outline-offset:2px; }
.mono{ font-family:"IBM Plex Mono", ui-monospace, Menlo, Consolas, monospace; }
.tnum{ font-variant-numeric:tabular-nums; }

/* ---------- Shell ---------- */
.shell{
  display:grid;
  grid-template-columns:216px minmax(0, 1fr);
  min-height:100vh;
  max-width:100vw;
}
.sidebar{
  background:var(--surface-2);
  border-right:1px solid var(--border);
  display:flex;
  flex-direction:column;
  padding:18px 12px;
  gap:22px;
}
.brand{
  display:flex;
  align-items:center;
  gap:9px;
  padding:2px 8px 12px;
  border-bottom:1px solid var(--border);
}
.brand-logo{
  height:26px;
  width:auto;
  flex:none;
}
.brand-mark{
  width:26px; height:26px;
  border-radius:7px;
  background:linear-gradient(155deg, var(--accent), var(--accent-strong));
  display:flex; align-items:center; justify-content:center;
  color:#fff; font-weight:700; font-size:12px; font-family:"IBM Plex Mono", monospace;
  flex:none;
}
.brand-text{ display:flex; flex-direction:column; line-height:1.15; }
.brand-text strong{ font-size:14px; font-weight:700; letter-spacing:-0.01em; }
.brand-text span{ font-size:10.5px; color:var(--text-faint); text-transform:uppercase; letter-spacing:.06em; }

nav.navlist{ display:flex; flex-direction:column; gap:2px; }
.navlabel{
  font-size:10.5px; text-transform:uppercase; letter-spacing:.08em; color:var(--text-faint);
  padding:0 10px; margin:10px 0 4px;
}
.navitem{
  display:flex; align-items:center; gap:10px;
  padding:8px 10px;
  border-radius:7px;
  color:var(--text-muted);
  background:transparent;
  border:none;
  cursor:pointer;
  text-align:left;
  font-size:12.5px;
  font-weight:500;
  width:100%;
  text-decoration:none;
}
.navitem svg{ width:16px; height:16px; flex:none; opacity:.85; }
.navitem:hover{ background:var(--surface); color:var(--text); }
.navitem.active{ background:var(--accent-soft); color:var(--accent-strong); }
.navitem.active svg{ opacity:1; }

.sidebar-foot{
  margin-top:auto;
  border-top:1px solid var(--border);
  padding-top:12px;
  display:flex; flex-direction:column; gap:8px;
}
.env-chip{
  display:inline-flex; align-items:center; gap:6px;
  font-size:11px; color:var(--text-muted);
  padding:5px 9px; border-radius:6px; background:var(--surface); border:1px solid var(--border);
  width:fit-content;
}
.env-dot{ width:6px; height:6px; border-radius:50%; background:var(--success); }
.operator{ display:flex; align-items:center; gap:8px; padding:0 2px; }
.operator-avatar{
  width:24px; height:24px; border-radius:50%;
  background:var(--surface); border:1px solid var(--border-strong);
  display:flex; align-items:center; justify-content:center;
  font-size:10.5px; font-weight:600; color:var(--text-muted); flex:none;
}
.operator span{ font-size:11.5px; color:var(--text-muted); }
.operator strong{ display:block; font-size:12px; color:var(--text); font-weight:600; }
.operator form{ margin-left:auto; }
.logout-btn{
  border:1px solid var(--border-strong);
  background:var(--surface);
  color:var(--text-muted);
  border-radius:6px;
  padding:5px 9px;
  font-size:11px;
  cursor:pointer;
}
.logout-btn:hover{ color:var(--text); border-color:var(--accent); }

.main{ display:flex; flex-direction:column; min-width:0; }

.topbar{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 22px;
  border-bottom:1px solid var(--border);
  background:var(--surface);
  gap:16px;
  flex-wrap:wrap;
}
.topbar h1{ font-size:17px; font-weight:700; letter-spacing:-0.01em; margin:0; text-wrap:balance; }
.topbar-sub{ font-size:11.5px; color:var(--text-faint); margin-top:1px; }
.health-strip{ display:flex; align-items:center; gap:14px; flex-wrap:wrap; }
.health-item{ display:flex; align-items:center; gap:6px; font-size:11.5px; color:var(--text-muted); }
.health-dot{ width:7px; height:7px; border-radius:50%; flex:none; }
.health-dot.ok{ background:var(--success); box-shadow:0 0 0 3px var(--success-soft); }
.health-dot.warn{ background:var(--warning); box-shadow:0 0 0 3px var(--warning-soft); }
.health-dot.crit{ background:var(--critical); box-shadow:0 0 0 3px var(--critical-soft); }

.view{ padding:22px; flex:1; min-height:0; min-width:0; display:flex; flex-direction:column; gap:18px; }

/* ---------- Generic components ---------- */
.card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:10px;
}
.card-pad{ padding:16px 18px; }
.card-head{
  display:flex; align-items:baseline; justify-content:space-between; gap:10px;
  padding:14px 18px; border-bottom:1px solid var(--border);
}
.card-head h2{ font-size:13.5px; font-weight:600; margin:0; }
.card-head p{ margin:2px 0 0; font-size:11.5px; color:var(--text-faint); }

.pill{
  display:inline-flex; align-items:center; gap:5px;
  padding:2.5px 9px; border-radius:99px;
  font-size:10.5px; font-weight:600; letter-spacing:.02em;
  white-space:nowrap;
}
.pill::before{ content:""; width:5px; height:5px; border-radius:50%; background:currentColor; }
.pill-ai{ background:var(--success-soft); color:var(--success); }
.pill-human{ background:var(--info-soft); color:var(--info); }
.pill-pending{ background:var(--warning-soft); color:var(--warning); }
.pill-active{ background:var(--success-soft); color:var(--success); }
.pill-paused{ background:var(--critical-soft); color:var(--critical); }
.pill-neutral{ background:var(--surface-2); color:var(--text-muted); }

.tag{
  display:inline-flex; align-items:center;
  padding:2px 8px; border-radius:5px;
  font-size:10.5px; font-weight:500;
  background:var(--surface-2); color:var(--text-muted);
  border:1px solid var(--border);
}

table{ width:100%; border-collapse:collapse; font-size:12.5px; }
th{
  text-align:left; font-size:10.5px; text-transform:uppercase; letter-spacing:.05em;
  color:var(--text-faint); font-weight:600;
  padding:9px 18px; border-bottom:1px solid var(--border);
  background:var(--surface-2);
}
td{ padding:11px 18px; border-bottom:1px solid var(--border); vertical-align:middle; color:var(--text); }
tbody tr:last-child td{ border-bottom:none; }
tbody tr:hover{ background:var(--surface-2); }
.table-wrap{ overflow-x:auto; }

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:6px;
  padding:7px 13px; border-radius:7px;
  font-size:12px; font-weight:600;
  border:1px solid var(--border-strong);
  background:var(--surface);
  color:var(--text);
  cursor:pointer;
}
.btn:hover{ border-color:var(--accent); color:var(--accent-strong); }
.btn-primary{ background:var(--accent); border-color:var(--accent); color:#fff; }
.btn-primary:hover{ background:var(--accent-strong); border-color:var(--accent-strong); color:#fff; }
.btn-ghost{ border-color:transparent; background:transparent; }
.btn-ghost:hover{ background:var(--surface-2); border-color:transparent; color:var(--text); }
.btn-sm{ padding:4px 9px; font-size:11px; border-radius:6px; }
.btn[disabled]{ opacity:.5; cursor:not-allowed; }
.btn[disabled]:hover{ border-color:var(--border-strong); color:var(--text); }

input[type="text"], input[type="search"], select, textarea{
  font-family:inherit; font-size:12.5px;
  background:var(--surface); color:var(--text);
  border:1px solid var(--border-strong); border-radius:7px;
  padding:7px 10px;
}
textarea{ resize:vertical; }

.kpi-grid{ display:grid; grid-template-columns:repeat(5, 1fr); gap:12px; }
.kpi{ padding:14px 16px; display:flex; flex-direction:column; gap:6px; }
.kpi-label{ font-size:11px; color:var(--text-faint); text-transform:uppercase; letter-spacing:.04em; }
.kpi-value{ font-size:22px; font-weight:700; letter-spacing:-0.01em; }
.kpi-delta{ font-size:11px; font-weight:600; }
.kpi-delta.up{ color:var(--success); }
.kpi-delta.down{ color:var(--critical); }
.kpi-delta.flat{ color:var(--text-faint); }

.grid-2{ display:grid; grid-template-columns:1.5fr 1fr; gap:14px; align-items:start; }
.grid-charts{ display:grid; grid-template-columns:1.5fr 1fr; gap:14px; }

.activity-list{ display:flex; flex-direction:column; }
.activity-row{ display:flex; gap:10px; padding:10px 18px; border-bottom:1px solid var(--border); }
.activity-row:last-child{ border-bottom:none; }
.activity-dot{ width:7px; height:7px; border-radius:50%; margin-top:5px; flex:none; }
.activity-body{ flex:1; min-width:0; }
.activity-title{ font-size:12px; color:var(--text); }
.activity-meta{ font-size:11px; color:var(--text-faint); margin-top:1px; }
.activity-time{ font-size:11px; color:var(--text-faint); white-space:nowrap; font-family:"IBM Plex Mono",monospace; }

/* ---------- Conversations view ---------- */
.conv-toolbar{ display:flex; gap:8px; align-items:center; flex-wrap:wrap; }
.conv-toolbar input[type="search"]{ min-width:220px; }
.filter-chip{
  padding:5px 11px; border-radius:99px; font-size:11.5px; font-weight:600;
  border:1px solid var(--border-strong); background:var(--surface); color:var(--text-muted);
  cursor:pointer;
}
.tenant-select{
  padding:5px 11px; border-radius:8px; font-size:11.5px; font-weight:600;
  border:1px solid var(--border-strong); background:var(--surface); color:var(--text-muted);
  cursor:pointer;
}

/* ---------- New message modal ---------- */
.modal-backdrop{
  position:fixed; inset:0; background:rgba(0,0,0,.45);
  display:flex; align-items:center; justify-content:center; z-index:1000;
}
.modal-card{
  background:var(--surface); border:1px solid var(--border-strong); border-radius:10px;
  width:100%; max-width:420px; box-shadow:0 12px 32px rgba(0,0,0,.3);
}
.modal-header{ padding:14px 18px; font-weight:600; font-size:14px; border-bottom:1px solid var(--border); }
.modal-body{ padding:16px 18px; display:flex; flex-direction:column; gap:6px; }
.modal-body label{ font-size:11.5px; color:var(--text-muted); margin-top:6px; }
.modal-body input, .modal-body textarea{ width:100%; }
.modal-body textarea{ min-height:80px; resize:vertical; }
.modal-footer{ padding:12px 18px; display:flex; justify-content:flex-end; gap:8px; border-top:1px solid var(--border); }

.filter-chip.active{ background:var(--accent); border-color:var(--accent); color:#fff; }
.conv-layout{
  display:grid; grid-template-columns:minmax(220px, 296px) minmax(0, 1fr) minmax(240px, 300px);
  border:1px solid var(--border); border-radius:10px; overflow:hidden;
  background:var(--surface); min-height:0; width:100%;
}
@media (max-width:1100px){
  .conv-layout{ grid-template-columns:minmax(220px, 296px) minmax(0, 1fr); }
  .context-pane{ display:none; }
}
.conv-list{ border-right:1px solid var(--border); overflow-y:auto; max-height:calc(100vh - 250px); }
.conv-item{
  display:flex; gap:10px; padding:11px 14px; border-bottom:1px solid var(--border);
  cursor:pointer; align-items:flex-start;
}
.conv-item:hover{ background:var(--surface-2); }
.conv-item.selected{ background:var(--accent-soft); }
.avatar{
  width:32px; height:32px; border-radius:50%; flex:none;
  background:var(--surface-2); border:1px solid var(--border-strong);
  display:flex; align-items:center; justify-content:center;
  font-size:11px; font-weight:700; color:var(--text-muted);
}
.conv-item-body{ flex:1; min-width:0; }
.conv-item-top{ display:flex; justify-content:space-between; gap:6px; }
.conv-name{ font-size:12.5px; font-weight:600; color:var(--text); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.conv-time{ font-size:10.5px; color:var(--text-faint); white-space:nowrap; font-family:"IBM Plex Mono",monospace; }
.conv-preview{ font-size:11.5px; color:var(--text-muted); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; margin-top:2px; }
.conv-item-bottom{ display:flex; gap:6px; margin-top:6px; align-items:center; }
.conv-tenant{ font-size:10px; color:var(--text-faint); }

.thread-pane{ display:flex; flex-direction:column; min-width:0; }
.thread-head{ padding:12px 18px; border-bottom:1px solid var(--border); display:flex; justify-content:space-between; align-items:center; gap:10px; }
.thread-head-title{ font-size:13.5px; font-weight:700; }
.thread-head-sub{ font-size:11px; color:var(--text-faint); margin-top:1px; }
.thread-body{ flex:1; overflow-y:auto; padding:16px 18px; display:flex; flex-direction:column; gap:12px; max-height:calc(100vh - 340px); }
.bubble-row{ display:flex; flex-direction:column; max-width:72%; gap:3px; }
.bubble-row.from-customer{ align-self:flex-start; align-items:flex-start; }
.bubble-row.from-ai, .bubble-row.from-human{ align-self:flex-end; align-items:flex-end; }
.bubble-tag{ font-size:9.5px; font-weight:700; text-transform:uppercase; letter-spacing:.05em; padding:1px 6px; border-radius:4px; }
.bubble-tag.ai{ background:var(--accent-soft); color:var(--accent-strong); }
.bubble-tag.human{ background:var(--info-soft); color:var(--info); }
.bubble{ padding:9px 12px; border-radius:11px; font-size:12.5px; line-height:1.5; }
.from-customer .bubble{ background:var(--surface-2); border:1px solid var(--border); border-top-left-radius:3px; }
.from-ai .bubble{ background:var(--accent-soft); border:1px solid transparent; border-top-right-radius:3px; color:var(--text); }
.from-human .bubble{ background:var(--info-soft); border:1px solid transparent; border-top-right-radius:3px; color:var(--text); }
.bubble-meta{ display:flex; gap:5px; align-items:center; font-size:10px; color:var(--text-faint); font-family:"IBM Plex Mono",monospace; }
.bubble-meta .status-ok{ color:var(--info); }
.bubble-meta .status-fail{ color:var(--critical); }
.sys-row{ align-self:center; display:flex; align-items:center; gap:8px; font-size:10.5px; color:var(--text-faint); margin:2px 0; }
.sys-row::before, .sys-row::after{ content:""; height:1px; width:26px; background:var(--border-strong); }
.media-card{
  display:flex; align-items:center; gap:9px; padding:8px 10px;
  border:1px solid var(--border); border-radius:9px; background:var(--surface); min-width:200px;
}
.media-icon{ width:30px; height:30px; border-radius:7px; background:var(--warning-soft); color:var(--warning); display:flex; align-items:center; justify-content:center; flex:none; }
.media-info{ flex:1; min-width:0; }
.media-name{ font-size:11.5px; font-weight:600; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.media-meta{ font-size:10px; color:var(--text-faint); }

.composer{ border-top:1px solid var(--border); padding:12px 18px; display:flex; flex-direction:column; gap:8px; }
.composer textarea{ width:100%; min-height:56px; }
.composer-row{ display:flex; justify-content:space-between; align-items:center; gap:8px; }
.composer-hint{ font-size:10.5px; color:var(--text-faint); }

.context-pane{ overflow-y:auto; max-height:calc(100vh - 250px); }
.context-section{ padding:14px 16px; border-bottom:1px solid var(--border); }
.context-section:last-child{ border-bottom:none; }
.context-label{ font-size:10.5px; text-transform:uppercase; letter-spacing:.05em; color:var(--text-faint); font-weight:600; margin-bottom:8px; }
.kv-row{ display:flex; justify-content:space-between; gap:8px; font-size:12px; padding:3px 0; }
.kv-row span:first-child{ color:var(--text-faint); }
.kv-row span:last-child{ text-align:right; color:var(--text); font-weight:500; }

.toggle-row{ display:flex; align-items:center; justify-content:space-between; gap:10px; }
.toggle{ position:relative; width:36px; height:20px; flex:none; }
.toggle input{ position:absolute; opacity:0; inset:0; margin:0; cursor:pointer; }
.toggle-track{ position:absolute; inset:0; background:var(--border-strong); border-radius:99px; transition:background .15s; }
.toggle-thumb{ position:absolute; top:2px; left:2px; width:16px; height:16px; border-radius:50%; background:var(--surface); box-shadow:0 1px 2px var(--shadow); transition:transform .15s; }
.toggle input:checked + .toggle-track{ background:var(--accent); }
.toggle input:checked + .toggle-track + .toggle-thumb{ transform:translateX(16px); }

.window-chip{ display:flex; align-items:center; gap:7px; padding:8px 10px; border-radius:8px; background:var(--surface-2); border:1px solid var(--border); }
.window-chip.expired{ background:var(--critical-soft); border-color:transparent; }
.window-chip.low{ background:var(--warning-soft); border-color:transparent; }
.window-time{ font-family:"IBM Plex Mono",monospace; font-weight:600; font-size:13px; }

.mini-audit{ display:flex; flex-direction:column; gap:8px; }
.mini-audit-item{ font-size:11px; color:var(--text-muted); display:flex; gap:6px; }
.mini-audit-item .dot{ width:5px; height:5px; border-radius:50%; background:var(--text-faint); margin-top:5px; flex:none; }
.mini-audit-item b{ color:var(--text); font-weight:600; }

/* ---------- Tenants ---------- */
.tenant-row-detail{ background:var(--surface-2); }
.tenant-detail-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:16px; padding:16px 18px; }
.detail-field{ display:flex; flex-direction:column; gap:3px; }
.detail-field label{ font-size:10.5px; text-transform:uppercase; letter-spacing:.04em; color:var(--text-faint); }
.detail-field .val{ font-family:"IBM Plex Mono",monospace; font-size:12px; }
.secret{ letter-spacing:.12em; }

/* ---------- LLM & Prompts ---------- */
.provider-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:12px; }
.provider-card{ padding:14px 16px; display:flex; flex-direction:column; gap:10px; }
.provider-top{ display:flex; justify-content:space-between; align-items:flex-start; }
.provider-name{ font-size:13px; font-weight:700; }
.provider-role{ font-size:10.5px; color:var(--text-faint); margin-top:1px; }
.provider-meta-row{ display:flex; justify-content:space-between; font-size:11.5px; }
.provider-meta-row span:first-child{ color:var(--text-faint); }
.provider-meta-row span:last-child{ font-family:"IBM Plex Mono",monospace; }

.template-card{ padding:14px 16px; display:flex; flex-direction:column; gap:8px; }
.template-top{ display:flex; justify-content:space-between; align-items:baseline; gap:10px; }
.template-name{ font-size:12.5px; font-weight:700; }
.template-preview{ font-size:12px; color:var(--text-muted); font-style:italic; }
.template-preview.full{ font-style:normal; }
.template-vars{ display:flex; gap:6px; flex-wrap:wrap; }
.var-chip{ font-family:"IBM Plex Mono",monospace; font-size:10.5px; padding:2px 7px; border-radius:5px; background:var(--info-soft); color:var(--info); }

.empty-note{ padding:22px; text-align:center; color:var(--text-faint); font-size:12px; }

/* charts */
.chart-legend{ display:flex; gap:14px; font-size:11px; color:var(--text-muted); margin-bottom:2px; }
.chart-legend span{ display:inline-flex; align-items:center; gap:5px; }
.chart-legend i{ width:8px; height:8px; border-radius:2px; display:inline-block; }
svg.chart text{ fill:var(--text-faint); font-family:"IBM Plex Mono", monospace; }
svg.chart .gridline{ stroke:var(--border); stroke-width:1; }
svg.chart .axis{ stroke:var(--border-strong); stroke-width:1; }

code.inline{ font-family:"IBM Plex Mono",monospace; font-size:11.5px; background:var(--surface-2); padding:1px 6px; border-radius:4px; }

@media (prefers-reduced-motion: reduce){
  *{ transition:none !important; animation:none !important; }
}

/* ---------- Login ---------- */
.login-shell{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:100vh;
  background:var(--bg);
  padding:24px;
}
.login-card{
  width:100%;
  max-width:340px;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:10px;
  box-shadow:0 8px 24px var(--shadow);
  padding:28px 26px;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}
.login-logo{ height:36px; width:auto; margin-bottom:14px; }
.login-card h1{ font-size:18px; margin:0; }
.login-sub{ color:var(--text-muted); font-size:12.5px; margin:4px 0 18px; }
.login-alert{ width:100%; text-align:left; font-size:12px; border-radius:6px; padding:9px 11px; margin-bottom:14px; }
.login-alert-error{ background:var(--critical-soft); color:var(--critical); }
.login-card form{ width:100%; display:flex; flex-direction:column; gap:6px; text-align:left; }
.login-card label{ font-size:12px; color:var(--text-muted); margin-top:8px; }
.login-card input[type="text"], .login-card input[type="password"]{
  border:1px solid var(--border-strong);
  border-radius:6px;
  padding:8px 10px;
  font-size:13px;
  background:var(--surface);
  color:var(--text);
}
.login-submit{
  margin-top:18px;
  background:var(--accent);
  color:var(--surface);
  border:none;
  border-radius:6px;
  padding:9px 12px;
  font-size:13px;
  font-weight:600;
  cursor:pointer;
}
.login-submit:hover{ background:var(--accent-strong); }

