/* Login page styles moved from inline CSS in app.py */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(135deg, #2C2F33 0%, #23272A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
.login-container {
  background: #36393F;
  border: 1px solid #202225;
  border-radius: 8px;
  padding: 2rem;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}
h1 {
  color: white;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  text-align: center;
}
.subtitle {
  color: #B9BBBE;
  font-size: 0.9rem;
  text-align: center;
  margin-bottom: 2rem;
}
.divider {
  height: 1px;
  background: #202225;
  margin: 2rem 0;
}
.login-btn {
  width: 100%;
  padding: 1rem;
  background-color: #5865F2;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.login-btn:hover {
  background-color: #4752C4;
}
.footer {
  color: #72767D;
  font-size: 0.75rem;
  text-align: center;
  margin-top: 2rem;
}
