/* === login.css === */
/* ---------------------------------------------------------------------------
login.css

Lifted verbatim out of views/login.ejs (an inline <style> block). The template now
links this file from the exact spot the block occupied, because that position
decides which declarations win ties against the core stylesheet.
--------------------------------------------------------------------------- */

.login-container {
  max-width: 450px;
  margin: 60px auto;
  padding: 0 20px;
}
.login-card {
  background: white;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.login-header {
  text-align: center;
  margin-bottom: 30px;
}
.login-header h1 {
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 600;
  letter-spacing: -0.5px;
}
.error-alert {
  background: #fff5f5;
  border: 1px solid #feb2b2;
  color: #c53030;
  padding: 12px;
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Confirmation banner (password updated, reset link sent) -- the positive
   counterpart to .error-alert above, which these pages share. */
.notice-alert {
  background: #f0fff4;
  border: 1px solid #9ae6b4;
  color: #22683c;
  padding: 12px;
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.auth-links {
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
}
.auth-links a {
  color: #192a56;
  text-decoration: none;
}
.auth-links a:hover {
  text-decoration: underline;
}
