/* Shared shell for the signed-out pages: login, forgot-password, reset-password. */
body {
  min-height: 100vh;
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 40%, #4f46e5 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Segoe UI', system-ui, sans-serif;
  padding: 1.25rem;
}
.login-card {
  background: rgba(255,255,255,.97); border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,.35);
  width: 100%; max-width: 400px; padding: 2.25rem 2.5rem;
}
@media (max-width: 420px) {
  .login-card { padding: 1.75rem 1.5rem; border-radius: 16px; }
}
.brand-logo {
  width: 80px; border-radius: 10px; padding: 5px;
  background: #fff; object-fit: cover;
  display: block; margin: 0 auto .9rem;
  box-shadow: 0 0 24px rgba(79,70,229,.25);
}
.form-control:focus { border-color: #4f46e5; box-shadow: 0 0 0 .2rem rgba(79,70,229,.2); }
.btn-signin {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  border: none; color: #fff; font-weight: 600; letter-spacing: .5px;
  padding: .7rem; border-radius: 10px; transition: transform .15s, box-shadow .15s;
}
.btn-signin:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(79,70,229,.4); color: #fff; }
.btn-signin:disabled { transform: none; box-shadow: none; opacity: .65; }
.input-group-text { background: #f8f7ff; border-right: none; }
.form-control { border-left: none; }
.form-control:first-child { border-left: 1px solid #dee2e6; }
.auth-link {
  color: #4f46e5; font-size: .8rem; font-weight: 600; text-decoration: none;
}
.auth-link:hover { color: #4338ca; text-decoration: underline; }
.auth-icon-circle {
  width: 62px; height: 62px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; font-size: 1.7rem;
}
.auth-icon-sent   { background: #dcfce7; color: #16a34a; }
.auth-icon-failed { background: #fee2e2; color: #dc2626; }
