/* ===========================================
   BALO — Forgot Password Page
   =========================================== */
.forgot-shell, .login-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  background: var(--balo-bg, #f6f8fb);
  color: var(--balo-text, #222);
  font-family: "Inter", "Poppins", sans-serif;
  transition: background 0.3s ease, color 0.3s ease;
}

body.balo-night .forgot-shell {
  background: #0f172a;
  color: #e2e8f0;
}

.login-hero.pf-hero {
  text-align: center;
  padding: 2rem 1rem;
}

.login-hero img.balo-logo {
  width: 110px;
  height: auto;
  border-radius: 50%;
  margin-bottom: 1rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.login-main {
  width: 100%;
  max-width: 420px;
  padding: 1rem;
}

.login-card {
  background: var(--balo-card-bg, #fff);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

body.balo-night .login-card {
  background: #1e293b;
}

.login-card h2 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.login-form .field {
  margin-bottom: 1.4rem;
}

.login-form label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.login-form input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  background: #fff;
  transition: border-color 0.25s ease;
}

body.balo-night .login-form input {
  background: #0f172a;
  color: #e2e8f0;
  border-color: #334155;
}

.login-form input:focus {
  border-color: #3b82f6;
  outline: none;
}

.btn {
  display: inline-block;
  width: 100%;
  text-align: center;
  background: linear-gradient(90deg, #3b82f6, #2563eb);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 12px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.25s ease, transform 0.15s ease;
}

.btn:hover {
  background: linear-gradient(90deg, #2563eb, #1d4ed8);
  transform: translateY(-1px);
}

.form-error {
  color: #dc2626;
  background: rgba(220,38,38,0.1);
  padding: 10px 14px;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.form-success {
  color: #059669;
  background: rgba(5,150,105,0.1);
  padding: 10px 14px;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.meta {
  text-align: center;
  margin-top: 1.4rem;
}

.meta .link {
  color: #3b82f6;
  font-weight: 600;
  text-decoration: none;
}
/* Center the forgot-password layout */
.login-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;     /* horizontal center */
  justify-content: center; /* vertical center */
  padding: 2rem 1rem;
}

/* Make sure the card doesn’t stretch full width */
.login-main {
  width: 100%;
  max-width: 420px;
}

.login-card {
  margin: 0 auto; /* extra safety for centering */
}
.forgot-shell,
.login-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}
