/* Base styles */
body.login-page {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to bottom right, #1f2937, #374151, #4b5563);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

/* Card */
.login-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px;
  width: 100%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

/* Logo */
.login-card img {
  width: 112px;
  height: 112px;
  object-fit: contain;
  border-radius: 9999px;
  border: 4px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  margin-bottom: 16px;
  transition: transform 0.3s ease;
}

.login-card img:hover {
  transform: scale(1.05);
}

/* Headline */
.login-card h1 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Description */
.login-card p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
  color: #d1d5db;
}

/* Discord login button */
.login-button {
  display: inline-block;
  width: 100%;
  background: linear-gradient(to right, #3b82f6, #2563eb);
  color: white;
  font-weight: 600;
  font-size: 16px;
  padding: 14px;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: background 0.2s ease, transform 0.2s ease;
}

.login-button:hover,
.login-button:focus {
  background: linear-gradient(to right, #2563eb, #1e40af);
  transform: scale(1.03);
  outline: none;
}

/* Footer links */
.login-footer {
  margin-top: 24px;
  font-size: 12px;
  color: #9ca3af;
}

.login-footer a {
  color: #9ca3af;
  text-decoration: underline;
  transition: color 0.15s ease, opacity 0.15s ease;
}

.login-footer a:hover,
.login-footer a:focus {
  color: #bfdbfe;
  opacity: 1;
  outline: none;
}
