/* login.css — styles specific to the login page */

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a1f0f, #1a3a2e, #2d6a4f);
}

.login-card {
  width: 100%; max-width: 400px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
  padding: 40px 36px 32px;
}

.login-card h1 {
  font-size: 22px; font-weight: 600; color: #1a3a2e;
  text-align: center; margin-bottom: 6px;
}

.login-card .subtitle {
  font-size: 13px; color: #888; text-align: center; margin-bottom: 28px;
}

.login-card .btn-primary { width: 100%; }

#login_status {
  text-align: center; font-size: 13px; margin-top: 16px;
  min-height: 20px; color: #c0392b;
}
#login_status.success { color: #27ae60; }