/* ============================================================
   AUTH.CSS — Shared styles for forgot_password, reset_password,
   verify_otp and similar standalone auth pages
   Blues Home Helpers
   ============================================================ */

.auth__wrap {
  max-width: 420px;
  margin: 90px auto 40px;
  padding: 36px 28px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  text-align: center;
}
.auth__icon {
  font-size: 2.8rem;
  margin-bottom: 10px;
}
.auth__title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0a3d62;
  margin: 0 0 6px;
}
.auth__sub {
  font-size: 0.88rem;
  color: #666;
  margin-bottom: 24px;
  line-height: 1.6;
}
.auth__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}
.auth__field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.auth__label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #444;
}
.auth__input {
  width: 100%;
  padding: 11px 14px;
  border: 2px solid #d0e4f7;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  color: #333;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s;
}
.auth__input:focus {
  border-color: #0a3d62;
}
.auth__input--otp {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-align: center;
  padding: 14px 10px;
  color: #0a3d62;
}
.auth__btn {
  width: 100%;
  margin-top: 4px;
  padding: 13px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 10px;
}
.auth__error {
  color: #e74c3c;
  font-size: 0.83rem;
  font-weight: 600;
  margin: 0 0 10px;
}
.auth__success {
  color: #27ae60;
  font-size: 0.83rem;
  font-weight: 600;
  margin: 0 0 10px;
}
.auth__resend {
  margin-top: 18px;
  font-size: 0.82rem;
  color: #888;
}
.auth__resend button {
  background: none;
  border: none;
  color: #0a3d62;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.82rem;
  text-decoration: underline;
  font-family: inherit;
}
.auth__resend button:disabled {
  color: #aaa;
  cursor: not-allowed;
  text-decoration: none;
}
.auth__timer {
  font-size: 0.8rem;
  color: #e67e22;
  font-weight: 600;
  margin-top: 6px;
}
.auth__switch {
  margin-top: 20px;
  font-size: 0.85rem;
  color: #888;
}
.auth__switch a {
  color: #0a3d62;
  font-weight: 700;
  text-decoration: none;
}
.auth__switch a:hover {
  text-decoration: underline;
}