:root {
  --bg: #070a10;
  --bg-2: #0b1019;
  --text: #eef2f8;
  --muted: #828ea0;
  --faint: #5b6577;
  --line: rgba(255, 255, 255, 0.07);
  --line-strong: rgba(255, 255, 255, 0.13);

  --cpu: #ff9d3c;
  --ram: #4aa8ff;
  --disk: #c77dff;
  --net-down: #34d399;
  --net-up: #fb7185;

  --card: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
  --shadow: 0 1px 0 rgba(255, 255, 255, 0.05) inset, 0 18px 40px -22px rgba(0, 0, 0, 0.8);
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 14px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.1px;
  min-height: 100vh;
  position: relative;
}

.defs {
  position: absolute;
}

/* Halo d'ambiance en haut */
.glow {
  position: fixed;
  inset: 0 0 auto 0;
  height: 520px;
  pointer-events: none;
  background:
    radial-gradient(620px 320px at 18% -8%, rgba(74, 168, 255, 0.16), transparent 70%),
    radial-gradient(560px 320px at 88% -12%, rgba(199, 125, 255, 0.14), transparent 70%);
  z-index: 0;
}

/* ---------------- Header ---------------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 28px;
  background: rgba(8, 11, 18, 0.72);
  border-bottom: 1px solid var(--line);
  backdrop-filter: saturate(140%) blur(14px);
  flex-wrap: wrap;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand h1 {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.3px;
}
.subtitle {
  margin: 1px 0 0;
  font-size: 12px;
  color: var(--muted);
}
.live {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.25);
}
.live-core {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--faint);
  transition: background 0.3s;
}
.live.on .live-core {
  background: var(--net-down);
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.55);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.5); }
  70% { box-shadow: 0 0 0 9px rgba(52, 211, 153, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.segmented {
  display: inline-flex;
  gap: 2px;
  padding: 3px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}
.segmented button {
  appearance: none;
  border: none;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 12.5px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.18s;
}
.segmented button:hover {
  color: var(--text);
}
.segmented button.active {
  color: #fff;
  background: linear-gradient(180deg, rgba(74, 168, 255, 0.9), rgba(74, 168, 255, 0.7));
  box-shadow: 0 4px 14px -4px rgba(74, 168, 255, 0.7);
}
.segmented.small button {
  padding: 4px 10px;
  font-size: 12px;
}
.updated {
  font-size: 12px;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  min-width: 96px;
  text-align: right;
}

.banner {
  position: relative;
  z-index: 1;
  margin: 16px 28px 0;
  padding: 11px 16px;
  border-radius: 12px;
  font-size: 13px;
  color: #ffc9a8;
  background: rgba(255, 138, 76, 0.1);
  border: 1px solid rgba(255, 138, 76, 0.32);
}
.hidden {
  display: none !important;
}

/* ---------------- Layout ---------------- */
main {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  padding: 26px 28px 10px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.hero {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 980px) {
  .hero { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .hero { grid-template-columns: 1fr; }
}

.metric {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.25s, border-color 0.25s;
}
.metric:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
}
.metric-top {
  display: flex;
  align-items: center;
  gap: 9px;
}
.metric-icon {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  flex: none;
}
.metric-icon svg {
  width: 16px;
  height: 16px;
}
.metric-icon.cpu { color: var(--cpu); background: rgba(255, 157, 60, 0.12); }
.metric-icon.ram { color: var(--ram); background: rgba(74, 168, 255, 0.12); }
.metric-icon.disk { color: var(--disk); background: rgba(199, 125, 255, 0.12); }
.metric-icon.net { color: var(--net-down); background: rgba(52, 211, 153, 0.12); }
.metric-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.metric-aside {
  margin-left: auto;
  font-size: 11px;
  color: var(--faint);
  font-variant-numeric: tabular-nums;
}
.metric-aside.trend {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 3px 7px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  transition: color 0.3s, background 0.3s, border-color 0.3s;
}
.metric-aside.trend.up {
  color: #fcd68c;
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.2);
}
.metric-aside.trend.down {
  color: #9bf2d2;
  background: rgba(52, 211, 153, 0.1);
  border-color: rgba(52, 211, 153, 0.2);
}
.metric-aside.trend.steady {
  color: #b7c2d1;
  border-color: var(--line);
}

/* Jauge radiale */
.gauge {
  position: relative;
  width: 100%;
  display: grid;
  place-items: center;
  padding: 2px 0;
}
.gauge svg {
  width: 138px;
  height: 138px;
  transform: rotate(-90deg);
}
.gauge .track {
  fill: none;
  stroke: rgba(255, 255, 255, 0.07);
  stroke-width: 10;
}
.gauge .prog {
  fill: none;
  stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: 0 339.292;
  transition: stroke-dasharray 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.08));
}
.gauge-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
}
.gauge-val {
  font-size: 30px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: -1px;
}
.gauge-unit {
  font-size: 10.5px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.metric-sub {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.metric-insight {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 22px;
  margin: -3px 0 0;
  color: var(--faint);
  font-size: 10.5px;
  font-variant-numeric: tabular-nums;
  text-transform: uppercase;
  letter-spacing: 0.45px;
}
.metric-insight strong {
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

/* Réseau */
.metric.net .net-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 14px 4px 6px;
  flex: 1;
  justify-content: center;
}
.metric.net .net-insight {
  justify-content: flex-start;
  margin: 2px 4px -2px;
}
.net-line {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.net-dir {
  font-size: 18px;
  font-weight: 800;
  width: 16px;
}
.net-dir.down { color: var(--net-down); }
.net-dir.up { color: var(--net-up); }
.net-val {
  font-size: 21px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.5px;
}
.net-cap {
  margin-left: auto;
  font-size: 11px;
  color: var(--faint);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Sparkline */
.spark {
  width: 100%;
  height: 34px;
  display: block;
}
.spark-tall { height: 42px; margin-top: auto; }
.spark-line {
  fill: none;
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
  stroke-linejoin: round;
  stroke-linecap: round;
}
.spark-area {
  opacity: 0.16;
}

/* ---------------- Panels / charts ---------------- */
.charts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 980px) {
  .charts { grid-template-columns: 1fr; }
}
.panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px 20px;
}
.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.panel-title {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  color: var(--muted);
}
.panel-title b {
  color: var(--text);
  font-weight: 600;
}
.chip {
  width: 9px;
  height: 9px;
  border-radius: 3px;
}
.cpu-chip { background: var(--cpu); }
.ram-chip { background: var(--ram); }
.disk-chip { background: var(--disk); }
.net-chip { background: var(--net-down); }
.attention-chip { background: #fbbf24; box-shadow: 0 0 10px rgba(251, 191, 36, 0.45); }
.ghost {
  appearance: none;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  color: var(--text);
  font: inherit;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 11px;
  border-radius: 9px;
  cursor: pointer;
  transition: border-color 0.18s;
}
.ghost:hover {
  border-color: var(--ram);
}
.panel-canvas {
  height: 220px;
  position: relative;
}
.network-panel {
  grid-column: 1 / -1;
}
.network-canvas {
  height: 205px;
}
.chart-legend {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 11.5px;
  font-variant-numeric: tabular-nums;
}
.chart-legend span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.legend-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
.legend-dot.rx { background: var(--net-down); box-shadow: 0 0 8px rgba(52, 211, 153, 0.6); }
.legend-dot.tx { background: var(--net-up); box-shadow: 0 0 8px rgba(251, 113, 133, 0.6); }

/* ---------------- État de santé ---------------- */
.attention-panel {
  padding-bottom: 16px;
}
.health-summary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 25px;
  padding: 4px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
  font-size: 11.5px;
  font-weight: 600;
}
.health-summary::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--faint);
}
.health-summary.nominal { color: #a7f3d0; border-color: rgba(52, 211, 153, 0.22); background: rgba(52, 211, 153, 0.08); }
.health-summary.nominal::before { background: var(--net-down); box-shadow: 0 0 8px var(--net-down); }
.health-summary.warning { color: #fcd68c; border-color: rgba(245, 158, 11, 0.25); background: rgba(245, 158, 11, 0.09); }
.health-summary.warning::before { background: #fbbf24; box-shadow: 0 0 8px #fbbf24; }
.health-summary.critical { color: #fda4af; border-color: rgba(251, 113, 133, 0.28); background: rgba(251, 113, 133, 0.1); }
.health-summary.critical::before { background: var(--net-up); box-shadow: 0 0 8px var(--net-up); }
.attention-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.attention-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 60px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
}
.attention-item:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
}
.attention-item.warning { border-color: rgba(245, 158, 11, 0.24); background: linear-gradient(100deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.02)); }
.attention-item.critical { border-color: rgba(251, 113, 133, 0.3); background: linear-gradient(100deg, rgba(251, 113, 133, 0.12), rgba(251, 113, 133, 0.02)); }
.attention-mark {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--net-down);
  box-shadow: 0 0 10px rgba(52, 211, 153, 0.65);
}
.attention-item.warning .attention-mark { background: #fbbf24; box-shadow: 0 0 10px rgba(251, 191, 36, 0.75); }
.attention-item.critical .attention-mark { background: var(--net-up); box-shadow: 0 0 10px rgba(251, 113, 133, 0.75); }
.attention-copy {
  min-width: 0;
}
.attention-copy strong {
  display: block;
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
}
.attention-copy span {
  display: block;
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.attention-meter {
  width: 72px;
  height: 5px;
  margin-top: 6px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.08);
}
.attention-meter i {
  display: block;
  width: var(--progress);
  height: 100%;
  border-radius: inherit;
  background: var(--net-down);
  transition: width 0.65s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s;
}
.attention-item.warning .attention-meter i { background: #fbbf24; }
.attention-item.critical .attention-meter i { background: var(--net-up); }
.attention-value {
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  text-align: right;
}
.attention-empty {
  grid-column: 1 / -1;
  padding: 8px 0;
  color: var(--muted);
  font-size: 12px;
}

/* ---------------- Table / rows ---------------- */
.table-panel {
  padding-bottom: 10px;
}
.table-tools {
  display: flex;
  align-items: center;
  gap: 14px;
}
.count {
  font-size: 12px;
  color: var(--faint);
}
.rows-head,
.row {
  display: grid;
  grid-template-columns: 1.4fr 1.6fr 1.1fr 1.3fr 1.5fr 0.9fr;
  gap: 12px;
  align-items: center;
}
.rows-head {
  padding: 6px 12px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--faint);
  border-bottom: 1px solid var(--line);
}
.rows-head .num,
.row .num {
  justify-self: end;
  text-align: right;
}
.row {
  padding: 12px;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.15s;
  font-variant-numeric: tabular-nums;
}
.row:hover {
  background: rgba(255, 255, 255, 0.035);
}
.row:focus-visible {
  outline: 2px solid var(--ram);
  outline-offset: 2px;
}
.row.selected {
  background: linear-gradient(90deg, rgba(74, 168, 255, 0.14), rgba(74, 168, 255, 0.03));
  box-shadow: inset 2px 0 0 var(--ram);
}
.row + .row {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.r-proj {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
}
.r-proj b {
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.r-name {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.r-metric {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
}
.r-metric .v {
  min-width: 42px;
  text-align: right;
  font-weight: 500;
}
.minibar {
  width: 54px;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  flex: none;
}
.minibar > i {
  display: block;
  height: 100%;
  border-radius: 3px;
  transition: width 0.5s ease;
}
.minibar.cpu > i { background: var(--cpu); }
.minibar.mem > i { background: var(--ram); }
.r-net {
  font-size: 12.5px;
  color: var(--muted);
}
.r-net .dl { color: var(--net-down); }
.r-net .ul { color: var(--net-up); }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 500;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  border: 1px solid var(--line);
}
.pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--faint);
}
.pill.running { color: #a7f3d0; background: rgba(52, 211, 153, 0.1); border-color: rgba(52, 211, 153, 0.25); }
.pill.running::before { background: var(--net-down); box-shadow: 0 0 6px var(--net-down); }
.pill.exited,
.pill.dead { color: #fda4af; background: rgba(251, 113, 133, 0.1); border-color: rgba(251, 113, 133, 0.25); }
.pill.exited::before,
.pill.dead::before { background: var(--net-up); }
.badge {
  font-size: 9.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: #d8b4fe;
  background: rgba(199, 125, 255, 0.14);
  border-radius: 5px;
  padding: 2px 6px;
  flex: none;
}
.row-empty {
  text-align: center;
  color: var(--muted);
  padding: 30px;
}

@media (max-width: 760px) {
  .rows-head { display: none; }
  .row {
    grid-template-columns: 1fr 1fr;
    gap: 10px 12px;
  }
  .row .num { justify-self: start; text-align: left; }
  .r-metric { justify-content: flex-start; }
  .row [data-label]::before {
    content: attr(data-label);
    display: block;
    width: 100%;
    margin-bottom: 2px;
    color: var(--faint);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.45px;
    text-transform: uppercase;
  }
  .r-metric,
  .r-net,
  .pill {
    flex-wrap: wrap;
  }
  .pill {
    justify-self: start;
  }
  .attention-list { grid-template-columns: 1fr; }
  .chart-legend { gap: 8px; font-size: 10.5px; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

.foot {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--faint);
  font-size: 12px;
  padding: 26px 18px 32px;
}

/* ---------------- Toast ---------------- */
.toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  z-index: 120;
  transform: translateX(-50%) translateY(12px);
  max-width: min(90vw, 460px);
  padding: 11px 18px;
  border-radius: 12px;
  background: rgba(20, 26, 36, 0.96);
  border: 1px solid var(--line-strong);
  box-shadow: 0 14px 38px -12px rgba(0, 0, 0, 0.8);
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ---------------- Authentification ---------------- */
.ghost.logout {
  font-size: 12px;
}
.login-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(5, 7, 12, 0.78);
  backdrop-filter: saturate(120%) blur(10px);
}
.login-card {
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 26px 24px;
  background: var(--card);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.login-head {
  display: flex;
  align-items: center;
  gap: 13px;
}
.login-logo {
  width: 42px;
  height: 42px;
  flex: none;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--ram);
  background: rgba(74, 168, 255, 0.12);
  border: 1px solid rgba(74, 168, 255, 0.22);
}
.login-logo svg {
  width: 22px;
  height: 22px;
}
.login-head h2 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}
.login-head p {
  margin: 2px 0 0;
  font-size: 12.5px;
  color: var(--muted);
}
.login-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.login-field span {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.login-field input {
  width: 100%;
  padding: 11px 13px;
  font: inherit;
  font-size: 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 11px;
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.login-field input:focus {
  border-color: var(--ram);
  box-shadow: 0 0 0 3px rgba(74, 168, 255, 0.15);
}
.login-error {
  margin-top: -4px;
  padding: 9px 12px;
  font-size: 12.5px;
  color: #fda4af;
  background: rgba(251, 113, 133, 0.1);
  border: 1px solid rgba(251, 113, 133, 0.28);
  border-radius: 10px;
}
.login-btn {
  appearance: none;
  margin-top: 2px;
  padding: 11px 16px;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: 11px;
  background: linear-gradient(180deg, rgba(74, 168, 255, 0.95), rgba(74, 168, 255, 0.72));
  box-shadow: 0 6px 18px -6px rgba(74, 168, 255, 0.75);
  transition: filter 0.18s, transform 0.05s;
}
.login-btn:hover {
  filter: brightness(1.07);
}
.login-btn:active {
  transform: translateY(1px);
}
.login-btn:disabled {
  opacity: 0.6;
  cursor: progress;
}
