/* ═══════════════════════════════════════════════════════════
   PASSWORD RESET — compléments au-dessus de style_login.css
   ═══════════════════════════════════════════════════════════ */

/* Icône centrale au-dessus du titre */
.reset-icon-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.1rem;
}

.reset-icon {
  font-size: 2.8rem !important;
  color: var(--brand, #3a3f47);
  background: rgba(58,63,71,.10);
  padding: 1rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Lien retour (même que register) */
.back-link {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .8rem; font-weight: 500; color: #3a3f47;
  text-decoration: none; margin-bottom: 1.5rem;
  transition: opacity .15s;
}
.back-link:hover { opacity: .7; }
.back-link .material-symbols-outlined { font-size: 1rem; }

/* Carte info (email envoyé / succès) */
.reset-info-card {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  background: #eceef0;
  border-radius: 12px;
  padding: 1rem 1.1rem;
  margin-bottom: .5rem;
  font-size: .87rem;
  color: #3a3f47;
  line-height: 1.5;
}

.reset-info-card--success { background: #d1fae5; color: #065f46; }

.reset-info-icon {
  font-size: 1.2rem !important;
  color: #3a3f47;
  flex-shrink: 0;
  margin-top: .05rem;
}

.reset-info-card a { color: #3a3f47; font-weight: 600; }

/* Centrage du header sur ces pages */
.form-card__header { text-align: center; }
