* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #000;
  color: #e8e8e8;
  font-family: "Quantico", sans-serif;
}

.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.auth-card {
  width: min(250px, 100%);
  padding: 36px 32px;
  border-radius: 14px;
  text-align: center;
}

.auth-card h1 {
  margin: 0 0 10px;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.auth-card p {
  margin: 0 0 28px;
  color: #7a7a7a;
  font-size: 13px;
  line-height: 1.5;
}

.discord-login-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 46px;
  border: 0;
  border-radius: 8px;
  background: #5865f2;
  color: #fff;
  text-decoration: none;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: background 0.15s ease, transform 0.15s ease;
}

.discord-login-btn svg {
  width: 22px;
  height: 22px;
}

.discord-login-btn:hover {
  background: #4752c4;
  transform: translateY(-1px);
}

.auth-error {
  margin: 18px 0 0;
  color: #ff5c6a;
  font-size: 12px;
  line-height: 1.4;
}
