:root { --bg: #0b0f17; --fg: #e5e7eb; --muted: #9ca3af; --accent: #006AFF; }
* { box-sizing: border-box }
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu;
  background: var(--bg);
  color: var(--fg);
  min-height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container {
  max-width: 720px;
  margin: 8vh auto; /* or 5vh, or just '40px auto' */
  padding: 0 20px;
  text-align: center;
}
h1 { font-size: clamp(28px, 4vw, 48px); margin: 0 0 12px }
p {
  color: var(--muted);
  margin: 0 0 12px;
}
.cta{ display: inline-block; margin-top: 20px; padding: 12px 18px; background: var(--accent); color: #ffffff; border-radius: 12px; font-weight: 700; text-decoration: none }

.center-list {
  margin: 0 auto;
  text-align: left;
  display: inline-block;
  list-style-position: inside;
  color: var(--muted);
  font-family: inherit;
}

/* ----- LOGIN PAGE STYLES ----- */

.login-body {
  display: grid;
  place-items: center;
  min-height: 100dvh;
}

.login-card {
  background: #0f172a;
  border: 1px solid #1f2937;
  border-radius: 16px;
  padding: 28px;
  max-width: 360px;
  width: 92%;
  box-shadow: 0 10px 30px rgba(0,0,0,.3);
  text-align: left;
}

.login-card label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
}

.login-card input[type="password"] {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #334155;
  background: #111827;
  color: var(--fg);
  margin-bottom: 12px;
}

.login-card button {
  width: 100%;
  padding: 12px 14px;
  border: 0;
  border-radius: 12px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.login-error {
  color: #fda4af;
  margin-top: 8px;
}

.login-hint {
  color: var(--muted);
  font-size: .875rem;
  margin-top: 10px;
  text-align: center;
}
