/* ── Login Page ───────────────────────────────────────────────────────────── */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--color-bg);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9cdd4;
}

.card {
  background: var(--color-card);
  border: 1px solid var(--color-card-border);
  border-radius: 16px;
  padding: 48px 40px;
  width: 100%;
  max-width: 400px;
  text-align: center;
}

.logo {
  justify-content: center;
  margin-bottom: 16px;
}

.logo img {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  object-fit: cover;
}

h1 { font-size: 22px; font-weight: 600; color: var(--color-text); margin-bottom: 8px; }

p {
  font-size: 14px;
  color: var(--color-muted);
  margin-bottom: 32px;
  line-height: 1.6;
  text-decoration: none;
}

/* Reset link colors inside card */
.card a { text-decoration: none; color: inherit; }

.btn-discord {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--color-focus);
  color: white;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  transition: background 0.2s;
  width: 100%;
  box-sizing: border-box;
  justify-content: center;
}
.btn-discord:hover { background: #4752c4; }

.error {
  background: #3b1f1f;
  border: 1px solid #6e2c2c;
  color: #f87171;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 13px;
  margin-bottom: 20px;
}

.footer { margin-top: 32px; font-size: 12px; color: #495057; }
