:root {
  --bg: #040404;
  --panel: rgba(255, 255, 255, 0.05);
  --panel-border: rgba(255, 255, 255, 0.12);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.62);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at top, rgba(72, 92, 255, 0.14), transparent 30%),
    #040404;
  color: var(--text);
  font-family: "Inter", sans-serif;
}

.login-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  gap: 22px;
  padding: 24px;
}

.login-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.login-brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: #ffffff;
  opacity: 0.92;
}

.login-brand-mark svg {
  display: block;
  width: 100%;
  height: 100%;
}

.login-card {
  width: min(100%, 460px);
  padding: 28px;
  border: 1px solid var(--panel-border);
  border-radius: 24px;
  background: var(--panel);
  backdrop-filter: blur(14px);
  text-align: center;
}

.login-kicker {
  color: rgba(140, 181, 255, 0.86);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.login-card h1 {
  margin: 14px 0 0;
  font-size: 2.2rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.login-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.google-login-root {
  display: grid;
  place-items: center;
  margin-top: 24px;
  min-height: 48px;
}

.login-status {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.5;
}

.login-status.is-error {
  color: #ff9b9b;
}
