/* Recuperación de contraseña */
.password-reset-page {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: #f2f4f8;
  font-family: Inter, Arial, sans-serif;
}
.password-reset-card {
  width: min(520px, 100%);
  box-sizing: border-box;
  padding: 26px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 20px 55px rgba(0,0,0,.15);
}
.password-reset-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #141b2a;
  text-decoration: none;
  font-weight: 800;
}
.password-reset-brand img { width: 48px; height: 48px; object-fit: contain; }
.password-reset-card h1 { margin: 0 0 8px; }
.password-reset-card > p { color: #5c6675; }
.password-reset-field { display: flex; flex-direction: column; gap: 6px; margin-top: 15px; }
.password-reset-field label { font-weight: 700; }
.password-reset-field input {
  border: 1px solid #b6bec9;
  border-radius: 10px;
  padding: 11px 12px;
  font: inherit;
}
.password-reset-error { min-height: 1.1em; color: #a4001d; font-size: .85rem; }
.password-reset-status { min-height: 1.35em; color: #8b003f; font-weight: 700; }
.password-reset-submit,
.password-reset-home {
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin-top: 16px;
  border: 0;
  border-radius: 12px;
  padding: 12px 16px;
  background: #e90071;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.password-reset-invalid {
  padding: 14px;
  border-radius: 12px;
  background: #f7dce3;
  color: #841934;
}
