:root {
  --bg: #040a11;
  --bg-2: #08131d;
  --bg-3: #0b1c28;
  --panel: rgba(7, 16, 24, 0.88);
  --panel-2: rgba(9, 20, 31, 0.94);
  --panel-3: rgba(6, 14, 22, 0.98);
  --text: #eef9ff;
  --muted: #9eb8c8;
  --primary: #33c7ff;
  --primary-2: #0ea5ff;
  --accent: #4cffb1;
  --amber: #f4c35a;
  --line: rgba(97, 196, 255, 0.16);
  --line-strong: rgba(97, 196, 255, 0.36);
  --glow: rgba(51, 199, 255, 0.26);
  --glow-soft: rgba(76, 255, 177, 0.16);
  --danger: #ff6f7a;
  --shadow: 0 24px 72px rgba(0, 0, 0, 0.42);
  --shadow-soft: 0 14px 36px rgba(0, 0, 0, 0.28);
  --radius-lg: 24px;
  --radius-md: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 10% 0%, rgba(51,199,255,.10), transparent 28%),
    radial-gradient(circle at 95% 5%, rgba(76,255,177,.08), transparent 24%),
    linear-gradient(180deg, #050b13 0%, #07111b 42%, #030910 100%);
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(114, 168, 207, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(114, 168, 207, 0.055) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.016) 50%, transparent 50%);
  background-size: 34px 34px, 34px 34px, 100% 4px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.95), rgba(0,0,0,.20));
  z-index: -3;
}
body::after {
  content: "";
  position: fixed;
  inset: 10px;
  border: 1px solid rgba(97, 196, 255, 0.10);
  border-radius: 28px;
  box-shadow: inset 0 0 0 1px rgba(76,255,177,.03);
  pointer-events: none;
  z-index: -2;
}

h1, h2, h3, p { margin: 0; }
h1 {
  font-size: clamp(38px, 6vw, 76px);
  line-height: .94;
  letter-spacing: -0.065em;
  text-transform: uppercase;
  text-shadow: 0 0 26px rgba(51, 199, 255, 0.18);
}
h2 {
  font-size: clamp(24px, 2.5vw, 32px);
  letter-spacing: -0.04em;
}
h3 { font-size: 18px; letter-spacing: -0.03em; }
strong { color: #ffffff; }

.topbar {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 30px clamp(18px, 4vw, 58px) 102px;
  background:
    radial-gradient(circle at 84% 12%, rgba(51,199,255,.18), transparent 22%),
    radial-gradient(circle at 18% 20%, rgba(76,255,177,.10), transparent 26%),
    linear-gradient(135deg, rgba(4,10,17,.99) 0%, rgba(9,24,36,.99) 58%, rgba(7,17,25,.99) 100%);
  border-bottom: 1px solid rgba(97, 196, 255, 0.18);
  box-shadow: var(--shadow);
}
.topbar::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(97, 196, 255, 0.10);
  border-radius: 26px;
  pointer-events: none;
}
.topbar::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(51,199,255,.82), rgba(76,255,177,.66), transparent);
  box-shadow: 0 0 18px rgba(51, 199, 255, 0.24);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}
.hero-content::after {
  content: "";
  position: absolute;
  right: -40px;
  top: 6px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1px dashed rgba(51,199,255,.12);
  box-shadow: 0 0 0 14px rgba(51,199,255,.03), 0 0 0 38px rgba(76,255,177,.02);
  pointer-events: none;
}
.brand-row { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.brand-mark {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  font-weight: 950;
  font-size: 20px;
  color: #f2fbff;
  background: linear-gradient(135deg, rgba(20,48,72,.88), rgba(7,16,24,.96));
  border: 1px solid rgba(97, 196, 255, 0.40);
  box-shadow: inset 0 0 28px rgba(51,199,255,.12), 0 0 28px rgba(51,199,255,.10);
}
.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-top: 2px solid rgba(76,255,177,.46);
  border-left: 2px solid rgba(76,255,177,.46);
  left: 7px;
  top: 7px;
}
.brand-mark::after {
  left: auto;
  top: auto;
  right: 7px;
  bottom: 7px;
  border-left: 0;
  border-top: 0;
  border-right: 2px solid rgba(76,255,177,.46);
  border-bottom: 2px solid rgba(76,255,177,.46);
}
.brand-subline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(244,195,90,.28);
  background: rgba(244,195,90,.08);
  color: #ffe09a;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.brand-subline::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 12px rgba(244,195,90,.42);
}
.eyebrow {
  color: #8fe2ff;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .20em;
  margin-bottom: 8px;
  font-weight: 950;
}
.eyebrow.dark { color: #8fe2ff; }
.muted { color: var(--muted); margin-top: 8px; line-height: 1.6; }
.topbar .muted { color: #dcedf6; max-width: 820px; font-size: 16px; }
.top-actions { position: relative; z-index: 2; display: flex; gap: 10px; flex-wrap: wrap; }

.layout, .login-layout, .member-portal { padding: 18px clamp(18px, 4vw, 58px) 58px; }
.login-layout, .admin-layout, .member-portal, .auth-only, .admin-only, .member-only { display: none; }
body.login-mode .login-layout { display: block; }
body.admin-mode .admin-layout { display: block; }
body.admin-mode .admin-only, body.admin-mode .auth-only { display: inline-flex; }
body.member-mode .member-portal { display: block; }
body.member-mode .member-only, body.member-mode .auth-only { display: inline-flex; }
body.member-mode .topbar {
  background:
    radial-gradient(circle at 84% 12%, rgba(76,255,177,.14), transparent 22%),
    radial-gradient(circle at 18% 20%, rgba(51,199,255,.14), transparent 26%),
    linear-gradient(135deg, rgba(4,10,17,.99) 0%, rgba(7,34,30,.99) 58%, rgba(6,17,23,.99) 100%);
}

.card, .kpi {
  position: relative;
  background: linear-gradient(180deg, rgba(8,18,28,.94), rgba(6,14,22,.98));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}
.card {
  padding: clamp(20px, 2.4vw, 28px);
  margin-bottom: 20px;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(51,199,255,.06), transparent 18%, transparent 82%, rgba(76,255,177,.05)),
    linear-gradient(180deg, rgba(255,255,255,.02), transparent 40%);
  pointer-events: none;
}
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  clip-path: polygon(0 0, calc(100% - 34px) 0, 100% 34px, 100% 100%, 34px 100%, 0 calc(100% - 34px));
  border: 1px solid rgba(97, 196, 255, 0.07);
  pointer-events: none;
}
.card:hover { box-shadow: 0 28px 78px rgba(0, 0, 0, 0.44); }
.setup-card, .role-switch-card { margin-top: -60px; position: relative; z-index: 2; }
.role-switch-card { max-width: 860px; margin-left: auto; margin-right: auto; }
.role-switch-card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -60px;
  top: -60px;
  border-radius: 50%;
  border: 1px dashed rgba(51,199,255,.12);
  box-shadow: 0 0 0 16px rgba(51,199,255,.03), 0 0 0 34px rgba(76,255,177,.02);
  pointer-events: none;
}
/* badges removed for cleaner header */
.mini-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #a6e6ff;
  background: rgba(51,199,255,.08);
  border: 1px solid rgba(51,199,255,.22);
}
.soft-badge {
  color: #ffe09a;
  background: rgba(244,195,90,.08);
  border-color: rgba(244,195,90,.22);
}
.role-switch { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 10px; }
.role-btn {
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(97, 196, 255, 0.16);
  background: linear-gradient(180deg, rgba(9,19,31,.90), rgba(7,15,23,.94));
  color: var(--muted);
  border-radius: 20px;
  padding: 18px;
  cursor: pointer;
  font-weight: 950;
  text-align: center;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.role-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(51,199,255,.08), transparent);
  transform: translateX(-100%);
  transition: transform .55s ease;
}
.role-btn:hover::before { transform: translateX(100%); }
.role-btn span { display: block; font-size: 18px; color: #eff9ff; letter-spacing: .03em; }
.role-btn small { font-weight: 750; color: #89a7bd; }
.role-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(51,199,255,.30);
  box-shadow: var(--shadow-soft);
}
.role-btn.active {
  background: linear-gradient(135deg, rgba(8,26,42,.98), rgba(10,57,75,.98));
  border-color: rgba(51,199,255,.40);
  box-shadow: inset 0 0 30px rgba(51,199,255,.08), 0 0 28px rgba(51,199,255,.10);
}
.role-btn.active span, .role-btn.active small { color: #ffffff; }

.login-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 12px;
  position: relative;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.login-card { min-height: 430px; display: none; position: relative; overflow: hidden; }
.login-card.active { display: block; animation: popIn .24s ease both; }
.login-card h2 { font-size: clamp(28px, 3vw, 40px); }
.accent-admin::before,
.accent-member::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 8px;
  background: linear-gradient(90deg, var(--primary), #78ddff, var(--accent));
  box-shadow: 0 0 24px rgba(51,199,255,.24);
}
.accent-member::before { background: linear-gradient(90deg, var(--accent), #6ff7c8, var(--primary)); }

.stack-form { display: grid; gap: 15px; margin-top: 22px; }
.section-title { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; margin-bottom: 20px; }

.member-identity-head { align-items: center; gap: 20px; }
.member-identity-grid {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  min-width: 0;
  flex-wrap: wrap;
}
.member-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 12px;
  min-width: min(100%, 420px);
}
.member-meta-item {
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid rgba(97, 196, 255, 0.18);
  background: linear-gradient(180deg, rgba(6, 17, 28, 0.78), rgba(8, 22, 34, 0.88));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
}
.member-meta-item span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 11px;
  font-weight: 900;
}
.member-meta-item strong {
  display: block;
  font-size: 18px;
  line-height: 1.2;
  color: #ffffff;
}
.grid { display: grid; gap: 18px; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
label { display: grid; gap: 8px; font-weight: 850; color: #dff5ff; }
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(97, 196, 255, 0.14);
  border-radius: 16px;
  padding: 14px 15px;
  font: inherit;
  font-weight: 650;
  background: linear-gradient(180deg, rgba(7,16,24,.95), rgba(6,13,20,.98));
  color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.01);
  transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}
input::placeholder, textarea::placeholder { color: #6f899a; }
input:hover, select:hover, textarea:hover { border-color: rgba(97, 196, 255, 0.28); }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: rgba(51,199,255,.62);
  box-shadow: 0 0 0 4px rgba(51,199,255,.10), 0 0 18px rgba(51,199,255,.08);
}
input[readonly] { background: rgba(10,20,30,.95); color: #a7c0d0; }
.actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 17px; }
.btn {
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 16px;
  padding: 13px 18px;
  font-weight: 950;
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, border-color .16s ease;
  align-items: center;
  justify-content: center;
  min-height: 46px;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-110%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  transition: transform .55s ease;
}
.btn:hover::after { transform: translateX(110%); }
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-soft); }
.btn:disabled { opacity: .45; cursor: not-allowed; transform: none; box-shadow: none; }
.btn.primary {
  background: linear-gradient(135deg, rgba(10,65,97,1), rgba(51,199,255,1));
  color: white;
  border-color: rgba(97, 196, 255, 0.24);
}
.btn.primary:hover { background: linear-gradient(135deg, rgba(8,52,79,1), rgba(16,163,226,1)); }
.btn.secondary {
  background: linear-gradient(180deg, rgba(9,20,31,.98), rgba(7,15,24,.98));
  color: #bfeaff;
  border: 1px solid rgba(97, 196, 255, 0.16);
}

.tabs {
  position: sticky;
  top: 0;
  z-index: 15;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 20px 0;
  padding: 10px;
  border: 1px solid rgba(97, 196, 255, 0.10);
  border-radius: 999px;
  background: rgba(6, 14, 22, 0.88);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-soft);
}
.tab {
  border: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  border-radius: 999px;
  padding: 11px 16px;
  cursor: pointer;
  font-weight: 950;
  transition: .16s ease;
}
.tab:hover { background: rgba(51,199,255,.08); color: #e7f8ff; }
.tab.active {
  background: linear-gradient(135deg, rgba(9,58,87,1), rgba(51,199,255,1));
  color: white;
  box-shadow: 0 14px 28px rgba(0,0,0,.24);
}
.view { display: none; }
.view.active { display: block; animation: fadeUp .22s ease both; }

.kpi-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin-bottom: 20px; }
.kpi {
  overflow: hidden;
  padding: 21px;
  min-height: 126px;
  border: 1px solid rgba(97, 196, 255, 0.12);
}
.kpi::before {
  content: "";
  position: absolute;
  width: 116px;
  height: 116px;
  right: -30px;
  top: -38px;
  border-radius: 50%;
  border: 1px dashed rgba(51,199,255,.14);
  box-shadow: 0 0 0 14px rgba(51,199,255,.03);
}
.kpi::after {
  content: "";
  position: absolute;
  left: 20px;
  bottom: 16px;
  width: 84px;
  height: 3px;
  background: linear-gradient(90deg, rgba(76,255,177,.84), transparent);
  box-shadow: 0 0 14px rgba(76,255,177,.16);
}
.kpi span { color: var(--muted); display: block; font-weight: 850; position: relative; text-transform: uppercase; letter-spacing: .05em; font-size: 12px; }
.kpi strong { display: block; margin-top: 10px; font-size: clamp(26px, 3.2vw, 36px); letter-spacing: -.055em; position: relative; color: #ffffff; }

.pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(51,199,255,.08);
  color: #aee9ff;
  border: 1px solid rgba(51,199,255,.16);
  font-weight: 950;
  font-size: 12px;
  white-space: nowrap;
}
.pill.danger { background: rgba(255,111,122,.08); color: #ffc8cc; border-color: rgba(255,111,122,.20); }
.pill.success { background: rgba(76,255,177,.08); color: #cbffe8; border-color: rgba(76,255,177,.20); }

.inline-form { display: grid; grid-template-columns: repeat(6, minmax(120px, 1fr)); gap: 10px; margin-bottom: 18px; }
.inline-form .btn { min-width: 140px; }
.search { max-width: 340px; }
.table-wrap {
  overflow: auto;
  border: 1px solid rgba(97, 196, 255, 0.10);
  border-radius: 20px;
  background: rgba(5, 12, 19, 0.88);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.01);
}
table { width: 100%; border-collapse: collapse; min-width: 620px; }
th, td {
  padding: 13px 15px;
  border-bottom: 1px solid rgba(97, 196, 255, 0.08);
  text-align: left;
  vertical-align: top;
}
th {
  background: rgba(8, 18, 27, 0.98);
  color: #dbf4ff;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .09em;
}
td { color: #d8edf7; }
tbody tr { transition: background .14s ease; }
tbody tr:hover { background: rgba(51,199,255,.05); }
.right { text-align: right; }

.notice {
  margin: 15px 0;
  color: var(--muted);
  line-height: 1.6;
  padding: 12px 14px;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(97, 196, 255, 0.08);
  border-radius: 16px;
}
.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  max-width: 430px;
  padding: 15px 17px;
  border-radius: 18px;
  color: white;
  background: linear-gradient(135deg, rgba(6,14,22,.98), rgba(12,73,101,.98));
  border: 1px solid rgba(97, 196, 255, 0.20);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(14px);
  transition: .22s ease;
  pointer-events: none;
  z-index: 30;
}
.toast.show { opacity: 1; transform: translateY(0); }
.row-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.small-btn {
  border: 1px solid rgba(97, 196, 255, 0.14);
  background: rgba(7, 16, 24, 0.94);
  color: #def4ff;
  border-radius: 12px;
  padding: 8px 10px;
  cursor: pointer;
  font-weight: 900;
  transition: .14s ease;
}
.small-btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-soft); border-color: rgba(97, 196, 255, 0.26); }
.small-btn:disabled { opacity: .45; cursor: not-allowed; transform: none; box-shadow: none; }
.danger-text { color: #ffc8cc; }
.member-code { display: block; margin-top: 8px; color: var(--muted); font-size: 12px; }
.member-portal table { min-width: 520px; }
.password-form {
  display: grid;
  grid-template-columns: minmax(220px, 1.5fr) repeat(2, minmax(160px, 1fr)) auto;
  gap: 11px;
  align-items: end;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(97, 196, 255, 0.08);
}
.password-form h3 { margin: 0; font-size: 17px; letter-spacing: -.02em; }
.admin-password-form { grid-template-columns: minmax(220px, 1.5fr) minmax(160px, 1fr) minmax(180px, 1fr) auto; }
.url-chip {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(76,255,177,.16);
  border-radius: 18px;
  padding: 13px 15px;
  background: linear-gradient(135deg, rgba(7,18,24,.98), rgba(8,22,28,.98));
}
.url-chip span { font-weight: 900; color: #dff4ff; }
.url-chip strong { color: #cbffe8; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes popIn {
  from { opacity: 0; transform: scale(.985) translateY(8px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

@media (max-width: 980px) {
  .grid.two, .kpi-grid, .login-grid, .role-switch { grid-template-columns: 1fr; }
  .inline-form { grid-template-columns: 1fr 1fr; }
  .topbar { align-items: flex-start; flex-direction: column; padding-bottom: 96px; }
  .password-form, .admin-password-form { grid-template-columns: 1fr; }
  .tabs { border-radius: 24px; }
  .hero-content::after { display: none; }
}
@media (max-width: 620px) {
  body::after { inset: 8px; border-radius: 18px; }
  .layout, .login-layout, .member-portal { padding-left: 14px; padding-right: 14px; }
  .inline-form { grid-template-columns: 1fr; }
  .section-title { flex-direction: column; }

  .member-identity-grid { width: 100%; gap: 16px; }
  .member-meta-grid { grid-template-columns: 1fr; min-width: 100%; width: 100%; }
  .setup-card, .role-switch-card { margin-top: -42px; }
  .topbar { padding-left: 18px; padding-right: 18px; }
  .brand-mark { width: 52px; height: 52px; border-radius: 15px; }
  .card { border-radius: 22px; }
  .tabs { gap: 6px; padding: 8px; }
  .tab { padding: 10px 12px; }
}

.login-card > .muted:empty,
.login-card > .notice:empty,
.role-switch-card > .muted:empty,
.setup-card > .muted:empty { display: none; }

/* Symmetric login layout refinement */
.login-layout {
  max-width: 980px;
  margin: 0 auto;
}

.role-switch-card,
.login-grid {
  max-width: 760px;
}

.role-switch-card {
  padding: 24px 26px 22px;
  text-align: center;
}

.role-switch-card .eyebrow,
.role-switch-card h2 {
  text-align: center;
}

.role-switch {
  align-items: stretch;
  gap: 16px;
}

.role-btn {
  min-height: 74px;
  padding: 20px 18px;
}

.login-grid {
  margin-top: 16px;
}

.login-card {
  width: 100%;
  max-width: 760px;
  min-height: auto;
  padding: 28px 30px 30px;
}

.login-card .eyebrow,
.login-card h2 {
  text-align: center;
}

.login-card .stack-form {
  max-width: 560px;
  margin: 22px auto 0;
}

.login-card label {
  text-align: left;
}

.login-card .btn.primary {
  width: 100%;
  min-height: 50px;
  margin-top: 6px;
}

@media (max-width: 620px) {
  .role-switch-card,
  .login-card {
    padding-left: 18px;
    padding-right: 18px;
  }

  .login-card .stack-form {
    max-width: 100%;
  }
}

/* Ultra symmetric + full center layout */
body.login-mode .topbar {
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 34px;
  padding-bottom: 86px;
}

body.login-mode .hero-content {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

body.login-mode .hero-content::after {
  left: 50%;
  right: auto;
  top: 8px;
  transform: translateX(180px);
}

body.login-mode .brand-row {
  justify-content: center;
  margin-bottom: 14px;
}

body.login-mode #heroTitle,
body.login-mode #heroSubtitle,
body.login-mode #heroEyebrow {
  text-align: center;
}

body.login-mode .top-actions {
  position: absolute;
  top: 22px;
  right: clamp(18px, 4vw, 58px);
}

body.login-mode .login-layout {
  max-width: 860px;
  margin: -52px auto 0;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

body.login-mode .role-switch-card,
body.login-mode .login-grid {
  width: 100%;
  max-width: 760px;
}

body.login-mode .role-switch-card {
  margin-top: 0;
  padding: 26px 28px 24px;
}

body.login-mode .login-grid {
  margin-top: 18px;
}

body.login-mode .login-card {
  padding: 30px 32px 32px;
}

body.login-mode .login-card .stack-form {
  max-width: 540px;
}

body.login-mode .role-btn {
  min-height: 76px;
}

@media (max-width: 980px) {
  body.login-mode .topbar {
    padding-bottom: 76px;
  }

  body.login-mode .hero-content::after {
    display: none;
  }
}

@media (max-width: 620px) {
  body.login-mode .topbar {
    padding-top: 28px;
    padding-bottom: 66px;
  }

  body.login-mode .top-actions {
    position: static;
    margin: 8px auto 0;
    justify-content: center;
  }

  body.login-mode .login-layout {
    margin-top: -34px;
  }

  body.login-mode .role-switch-card,
  body.login-mode .login-card {
    max-width: 100%;
    padding-left: 18px;
    padding-right: 18px;
  }
}

/* Ultra center + super minimalis */
body.login-mode {
  background: linear-gradient(180deg, #071018 0%, #0a1520 100%);
}

body.login-mode::before,
body.login-mode::after,
body.login-mode .topbar::before,
body.login-mode .topbar::after,
body.login-mode .hero-content::after,
body.login-mode .role-switch-card::after,
body.login-mode .card::after {
  content: none;
}

body.login-mode .topbar {
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 42px 24px 82px;
  background: linear-gradient(180deg, #08131d 0%, #0a1824 100%);
  border-bottom: 1px solid rgba(97, 196, 255, 0.08);
  box-shadow: none;
}

body.login-mode .top-actions {
  display: none;
}

body.login-mode .hero-content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

body.login-mode .brand-row {
  justify-content: center;
  gap: 12px;
  margin-bottom: 14px;
}

body.login-mode .brand-mark {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  box-shadow: none;
  background: linear-gradient(180deg, rgba(14,27,40,.98), rgba(9,19,29,.98));
  border-color: rgba(97, 196, 255, 0.18);
}

body.login-mode .brand-mark::before,
body.login-mode .brand-mark::after {
  display: none;
}

body.login-mode .brand-subline {
  margin-top: 6px;
  padding: 6px 10px;
  border-color: rgba(244,195,90,.16);
  background: rgba(244,195,90,.06);
}

body.login-mode #heroEyebrow {
  margin-bottom: 6px;
  color: #8fcde8;
}

body.login-mode #heroTitle {
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.02;
  text-shadow: none;
}

body.login-mode #heroSubtitle {
  margin-top: 10px;
  color: #c8d8e3;
  font-size: 15px;
}

body.login-mode .login-layout {
  max-width: 720px;
  margin: -42px auto 0;
  padding: 0 18px 54px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

body.login-mode .role-switch-card,
body.login-mode .login-grid {
  width: 100%;
  max-width: 680px;
}

body.login-mode .card,
body.login-mode .kpi {
  background: rgba(11, 22, 33, 0.92);
  border: 1px solid rgba(97, 196, 255, 0.10);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

body.login-mode .role-switch-card {
  margin-top: 0;
  padding: 22px 22px 20px;
  text-align: center;
}

body.login-mode .role-switch-card .eyebrow {
  margin-bottom: 6px;
}

body.login-mode .role-switch-card h2 {
  font-size: 28px;
}

body.login-mode .role-switch {
  gap: 12px;
  margin-top: 16px;
}

body.login-mode .role-btn {
  min-height: 64px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(8, 18, 28, 0.96);
  border-color: rgba(97, 196, 255, 0.10);
  box-shadow: none;
}

body.login-mode .role-btn::before {
  display: none;
}

body.login-mode .role-btn span {
  font-size: 17px;
}

body.login-mode .role-btn:hover {
  transform: none;
  border-color: rgba(97, 196, 255, 0.18);
}

body.login-mode .role-btn.active {
  background: linear-gradient(180deg, rgba(15,73,106,.96), rgba(11,48,72,.96));
  border-color: rgba(97, 196, 255, 0.20);
  box-shadow: none;
}

body.login-mode .login-grid {
  margin-top: 14px;
}

body.login-mode .login-card {
  min-height: auto;
  padding: 24px 22px 22px;
}

body.login-mode .login-card .eyebrow,
body.login-mode .login-card h2 {
  text-align: center;
}

body.login-mode .login-card h2 {
  font-size: 30px;
}

body.login-mode .login-card .stack-form {
  max-width: 520px;
  margin: 20px auto 0;
  gap: 14px;
}

body.login-mode label {
  text-align: left;
}

body.login-mode input,
body.login-mode select,
body.login-mode textarea {
  border-radius: 14px;
  background: #0a1621;
}

body.login-mode .btn.primary,
body.login-mode .login-card .btn.primary {
  width: 100%;
  min-height: 48px;
  border-radius: 14px;
  box-shadow: none;
}

body.login-mode .btn:hover {
  transform: none;
  box-shadow: none;
}

@media (max-width: 620px) {
  body.login-mode .topbar {
    padding: 32px 16px 68px;
  }

  body.login-mode .login-layout {
    margin-top: -34px;
    padding-left: 14px;
    padding-right: 14px;
  }

  body.login-mode .role-switch {
    grid-template-columns: 1fr;
  }

  body.login-mode .role-switch-card,
  body.login-mode .login-card {
    padding-left: 18px;
    padding-right: 18px;
  }
}

.refresh-tab {
  margin-left: auto;
  background: linear-gradient(180deg, rgba(9,20,31,.98), rgba(7,15,24,.98));
  color: #bfeaff;
  border-color: rgba(97, 196, 255, 0.16);
}
.refresh-tab:hover {
  background: rgba(51,199,255,.12);
}

/* Notifikasi update untuk client/member */
.hidden { display: none !important; }
.client-update-notice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 0 0 20px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(76,255,177,.28);
  background: linear-gradient(135deg, rgba(10,60,56,.94), rgba(8,32,42,.96));
  box-shadow: 0 16px 42px rgba(0,0,0,.24), 0 0 24px rgba(76,255,177,.08);
}
.client-update-notice strong {
  display: block;
  color: #ffffff;
  margin-bottom: 4px;
}
.client-update-notice span {
  color: #c9ffe7;
  line-height: 1.45;
}
.client-update-notice .small-btn {
  flex: 0 0 auto;
  border-color: rgba(76,255,177,.24);
  color: #dbfff0;
}
@media (max-width: 620px) {
  .client-update-notice {
    align-items: stretch;
    flex-direction: column;
  }
  .client-update-notice .small-btn {
    width: 100%;
  }
}

/* Filter tanggal riwayat transaksi */
.date-filter {
  display: grid;
  grid-template-columns: repeat(2, minmax(160px, 1fr)) auto minmax(220px, 1.4fr);
  align-items: end;
  gap: 10px;
  margin: 0 0 18px;
  padding: 14px;
  border: 1px solid rgba(97, 196, 255, 0.10);
  border-radius: 18px;
  background: rgba(255,255,255,.025);
}
.date-filter label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.date-filter .btn { min-height: 44px; }
.filter-info { align-self: center; line-height: 1.5; }

@media (max-width: 980px) {
  .date-filter { grid-template-columns: 1fr 1fr; }
  .filter-info { grid-column: 1 / -1; }
}
@media (max-width: 620px) {
  .date-filter { grid-template-columns: 1fr; }
  .filter-info { grid-column: auto; }
}

.tx-summary-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}


.wrap-actions { flex-wrap: wrap; }
.toolbar-actions { justify-content: flex-end; margin: 14px 0 10px; }
.check-col { width: 44px; text-align: center; }
.check-col input[type="checkbox"], .row-check { width: 18px; height: 18px; cursor: pointer; }
.table-wrap .row-actions { flex-wrap: wrap; }





/* Lupa username/password admin */
.forgot-login-box {
  margin-top: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(97, 196, 255, 0.22);
  border-radius: 16px;
  background: rgba(6, 18, 30, 0.52);
}

.forgot-login-box summary {
  cursor: pointer;
  color: #cdeeff;
  font-weight: 900;
  text-align: center;
  list-style-position: inside;
}

.forgot-login-content {
  margin-top: 12px;
  color: #b9ceda;
  font-size: 14px;
  line-height: 1.55;
}

.forgot-login-content strong {
  color: #ffffff;
}

.forgot-login-content p {
  margin: 8px 0;
}

.forgot-login-content code {
  display: block;
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(51, 199, 255, 0.08);
  border: 1px solid rgba(51, 199, 255, 0.18);
  color: #dff7ff;
  white-space: normal;
}

@media (max-width: 768px) {
  .forgot-login-box {
    padding: 12px;
  }

  .forgot-login-content {
    font-size: 13px;
  }
}

/* OTP reset admin */
.forgot-login-box {
  margin-top: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(97, 196, 255, 0.22);
  border-radius: 16px;
  background: rgba(6, 18, 30, 0.52);
}

.forgot-login-box summary {
  cursor: pointer;
  color: #cdeeff;
  font-weight: 900;
  text-align: center;
  list-style-position: inside;
}

.forgot-login-content {
  margin-top: 14px;
  display: grid;
  gap: 12px;
}

.otp-reset-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.otp-reset-grid button {
  grid-column: 1 / -1;
}

@media (max-width: 768px) {
  .otp-reset-grid {
    grid-template-columns: 1fr;
  }
}

/* Lupa username/password admin */
.forgot-login-box {
  margin-top: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(97, 196, 255, 0.22);
  border-radius: 16px;
  background: rgba(6, 18, 30, 0.52);
}

.forgot-login-box summary {
  cursor: pointer;
  color: #cdeeff;
  font-weight: 900;
  text-align: center;
  list-style-position: inside;
}

.forgot-login-content {
  margin-top: 14px;
  display: grid;
  gap: 12px;
}

.otp-reset-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.otp-reset-grid button {
  grid-column: 1 / -1;
}

@media (max-width: 768px) {
  .otp-reset-grid {
    grid-template-columns: 1fr;
  }
}

/* Lupa username/password admin */
.forgot-login-box {
  margin-top: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(97, 196, 255, 0.22);
  border-radius: 16px;
  background: rgba(6, 18, 30, 0.52);
}

.forgot-login-box summary {
  cursor: pointer;
  color: #cdeeff;
  font-weight: 900;
  text-align: center;
  list-style-position: inside;
}

.forgot-login-content {
  margin-top: 14px;
  display: grid;
  gap: 12px;
}

.otp-reset-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.otp-reset-grid button {
  grid-column: 1 / -1;
}

@media (max-width: 768px) {
  .otp-reset-grid {
    grid-template-columns: 1fr;
  }
}

/* OTP email reset admin */
.forgot-login-box {
  margin-top: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(97, 196, 255, 0.22);
  border-radius: 16px;
  background: rgba(6, 18, 30, 0.52);
}

.forgot-login-box summary {
  cursor: pointer;
  color: #cdeeff;
  font-weight: 900;
  text-align: center;
  list-style-position: inside;
}

.forgot-login-content {
  margin-top: 12px;
  color: #b9ceda;
  font-size: 14px;
  line-height: 1.55;
}

.otp-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  margin-top: 12px;
}

.otp-reset-grid {
  grid-template-columns: 140px minmax(0, 1fr) minmax(0, 1fr) auto;
}

.otp-notice {
  margin-top: 12px;
  min-height: 20px;
  font-weight: 800;
}

.otp-notice.success {
  color: #65f0b6;
}

.otp-notice.danger {
  color: #ff9f9f;
}

@media (max-width: 768px) {
  .otp-grid,
  .otp-reset-grid {
    grid-template-columns: 1fr;
  }

  .otp-grid .btn,
  .otp-reset-grid .btn {
    width: 100%;
  }
}


/* === MODERN DASHBOARD CLEAN START === */

:root {
  --bg: #0b1620;
  --bg-2: #101c28;
  --panel: #13212d;
  --panel-2: #172735;
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.12);
  --text: #ecf3f8;
  --muted: #99adba;
  --primary: #3ea7e0;
  --primary-2: #268bc1;
  --primary-soft: rgba(62, 167, 224, 0.12);
  --success: #4dcf9b;
  --danger: #ff8d8d;
  --warning: #f4c76a;
  --shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  --radius: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  background:
    linear-gradient(180deg, #0a141d 0%, #0d1822 45%, #0b1620 100%) !important;
  color: var(--text) !important;
}

main,
.admin-shell,
.member-shell,
.portal-shell {
  width: min(100%, 1360px);
  margin-left: auto;
  margin-right: auto;
}

/* Top area */
.topbar,
.hero {
  background: transparent !important;
}

h1,
h2,
h3,
.section-title h2,
.section-title h3 {
  color: var(--text) !important;
  letter-spacing: -0.02em;
}

label,
p,
.muted,
.notice,
.forgot-login-content {
  color: var(--muted) !important;
}

/* Core cards */
.card,
.login-card,
.admin-sidebar,
.admin-setup-card,
.kpi,
.notice,
.date-filter,
.table-wrap,
.forgot-login-box {
  background: linear-gradient(180deg, var(--panel), var(--panel-2)) !important;
  border: 1px solid var(--line) !important;
  border-radius: var(--radius) !important;
  box-shadow: var(--shadow) !important;
}

/* Login */
.login-card {
  max-width: 760px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: clamp(22px, 4vw, 34px) !important;
}

.login-card h2 {
  text-align: center;
  font-size: clamp(30px, 4vw, 42px) !important;
}

.login-card .eyebrow {
  text-align: center;
  color: #b7ceda !important;
  letter-spacing: 0.1em;
}

/* Sidebar */
.admin-sidebar {
  background: linear-gradient(180deg, #12202c 0%, #101c27 100%) !important;
}

/* Inputs */
input,
select,
textarea,
.search {
  width: 100%;
  min-height: 48px;
  background: #0f1a24 !important;
  border: 1px solid var(--line) !important;
  border-radius: var(--radius-sm) !important;
  color: var(--text) !important;
  outline: none !important;
  transition: 0.18s ease;
}

input::placeholder,
textarea::placeholder {
  color: #7890a0 !important;
}

input:focus,
select:focus,
textarea:focus,
.search:focus {
  border-color: rgba(62, 167, 224, 0.55) !important;
  box-shadow: 0 0 0 4px rgba(62, 167, 224, 0.10) !important;
}

/* Buttons */
.btn,
button,
.small-btn,
.tab {
  border-radius: var(--radius-sm) !important;
  font-weight: 800 !important;
  transition: 0.18s ease;
}

.btn:hover,
button:hover,
.small-btn:hover,
.tab:hover {
  transform: translateY(-1px);
}

.btn.primary,
button[type="submit"],
#adminLoginForm button,
#resetAdminOtpBtn,
#sendAdminOtpBtn {
  background: linear-gradient(135deg, var(--primary-2), var(--primary)) !important;
  border: 1px solid rgba(112, 199, 244, 0.22) !important;
  color: #ffffff !important;
  box-shadow: 0 10px 24px rgba(38, 139, 193, 0.16) !important;
}

.btn.secondary,
.small-btn,
.tab {
  background: #162430 !important;
  border: 1px solid var(--line) !important;
  color: #dce8ef !important;
}

.btn.secondary:hover,
.small-btn:hover,
.tab:hover {
  background: #1a2b38 !important;
  border-color: var(--line-2) !important;
}

.btn.danger,
.danger-text,
#deleteSelectedMembersBtn,
#deleteSelectedTransactionsBtn,
#deleteSelectedImportsBtn {
  background: rgba(255, 110, 110, 0.10) !important;
  border: 1px solid rgba(255, 110, 110, 0.20) !important;
  color: #ffc1c1 !important;
}

/* Tabs */
.tab.active,
.sidebar-tabs .tab.active {
  background: var(--primary-soft) !important;
  color: #ffffff !important;
  border-color: rgba(62, 167, 224, 0.22) !important;
  box-shadow: none !important;
}

/* Section titles */
.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* KPI */
.kpi {
  position: relative;
  overflow: hidden;
}

.kpi::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary), transparent);
  opacity: 0.9;
}

.kpi strong {
  display: block;
  font-size: clamp(28px, 4vw, 40px) !important;
  color: #ffffff !important;
}

.kpi span {
  color: var(--muted) !important;
}

/* Table */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

table {
  width: 100%;
  border-collapse: separate !important;
  border-spacing: 0 !important;
}

thead th {
  background: #182734 !important;
  color: #dce8ef !important;
  border-bottom: 1px solid var(--line) !important;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

tbody td {
  color: #edf4f8 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}

tbody tr:hover td {
  background: rgba(62, 167, 224, 0.05) !important;
}

/* Notices */
.notice {
  background: linear-gradient(180deg, #13212d, #142330) !important;
}

/* Forgot box */
.forgot-login-box summary {
  cursor: pointer;
  color: #e8f1f5 !important;
  font-weight: 800;
}

.otp-notice.success {
  color: var(--success) !important;
}

.otp-notice.danger {
  color: var(--danger) !important;
}

/* Toast */
.toast {
  background: #132431 !important;
  border: 1px solid rgba(62, 167, 224, 0.18) !important;
  color: #f1f7fb !important;
  border-radius: 16px !important;
  box-shadow: var(--shadow) !important;
}

/* Helpers */
.check-col {
  text-align: center;
}

.row-actions,
.actions,
.toolbar-actions {
  gap: 10px;
}

/* Tablet */
@media (max-width: 1024px) {
  main,
  .admin-shell,
  .member-shell,
  .portal-shell,
  .topbar {
    width: 100%;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .grid,
  .grid.two,
  .kpi-grid,
  .mini-kpi-grid,
  .tx-summary-grid,
  .dashboard-action-grid,
  .members-dashboard-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 14px !important;
  }

  .inline-form,
  .password-form,
  .date-filter,
  .import-input-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
  }
}

/* Mobile */
@media (max-width: 768px) {
  main,
  .admin-shell,
  .member-shell,
  .portal-shell,
  .topbar {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .grid,
  .grid.two,
  .kpi-grid,
  .mini-kpi-grid,
  .tx-summary-grid,
  .dashboard-action-grid,
  .members-dashboard-grid,
  .inline-form,
  .password-form,
  .date-filter,
  .import-input-grid,
  .otp-grid,
  .otp-reset-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .card,
  .login-card,
  .admin-sidebar,
  .admin-setup-card,
  .kpi,
  .notice,
  .date-filter,
  .forgot-login-box {
    padding: 16px !important;
    border-radius: 16px !important;
  }

  .btn,
  button,
  .small-btn,
  input,
  select,
  textarea {
    width: 100%;
  }

  .actions,
  .toolbar-actions,
  .row-actions {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
  }

  .tabs {
    display: flex !important;
    overflow-x: auto;
    gap: 10px;
    flex-wrap: nowrap !important;
    -webkit-overflow-scrolling: touch;
  }

  .tabs .tab {
    flex: 0 0 auto;
    min-width: 130px;
    white-space: nowrap;
  }

  table {
    min-width: 760px;
  }

  th,
  td {
    white-space: nowrap;
    padding: 12px !important;
  }

  .toast {
    left: 10px !important;
    right: 10px !important;
    bottom: 10px !important;
    width: auto !important;
    max-width: none !important;
  }
}

@media (max-width: 480px) {
  h1,
  #heroTitle {
    font-size: 36px !important;
  }

  h2 {
    font-size: 26px !important;
  }

  table {
    min-width: 700px;
    font-size: 12px;
  }
}

/* === MODERN DASHBOARD CLEAN END === */


/* Strict member login notice */
.strict-member-login-notice {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 800;
  text-align: center;
  background: rgba(62, 167, 224, 0.10);
  border: 1px solid rgba(62, 167, 224, 0.20);
  color: #dff5ff;
}

.strict-member-login-notice.danger {
  background: rgba(255, 110, 110, 0.10);
  border-color: rgba(255, 110, 110, 0.24);
  color: #ffbcbc;
}

.strict-member-login-notice.success {
  background: rgba(77, 207, 155, 0.10);
  border-color: rgba(77, 207, 155, 0.24);
  color: #aaf4d5;
}

/* Keterangan login salah/benar */
.login-validation-notice {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 800;
  text-align: center;
  line-height: 1.4;
}

.login-validation-notice.danger {
  background: rgba(255, 110, 110, 0.10);
  border: 1px solid rgba(255, 110, 110, 0.26);
  color: #ffc2c2;
}

.login-validation-notice.success {
  background: rgba(77, 207, 155, 0.10);
  border: 1px solid rgba(77, 207, 155, 0.26);
  color: #b7f7dc;
}

.login-validation-notice.info {
  background: rgba(62, 167, 224, 0.10);
  border: 1px solid rgba(62, 167, 224, 0.24);
  color: #d8f3ff;
}
