/* =============================================================
   Password-Protected Page Form — Piscines Mova
   ============================================================= */

/* ── Wrapper centré ──────────────────────────────────────────── */
.mova-password-form-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15% 20px 100px 20px;
  background-color: #1a4759;
  background: url("../images/piscine-terrasse-voir-nos-modele-psicine-mova.webp") no-repeat center center/cover;
}

.mova-password-form-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  pointer-events: none;
}

/* ── Carte ───────────────────────────────────────────────────── */
.mova-password-form-inner {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border: 1px solid #d0d5dd;
  border-radius: 0;
  padding: 40px 36px;
  max-width: 480px;
  width: 100%;
}

/* ── Icône cadenas ───────────────────────────────────────────── */
.mova-password-form-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #eef4f6;
  color: #1a4759;
  margin-bottom: 20px;
}

/* ── Titre ───────────────────────────────────────────────────── */
.mova-password-form-title {
  font-family: "AcuminPro", sans-serif;
  font-size: 20px;
  font-weight: 600 !important;
  color: #1a4759;
  margin: 0 0 10px;
  padding: 0 0 10px;
  border-bottom: 2px solid #1a4759;
  line-height: 1.3;
}

/* ── Description ─────────────────────────────────────────────── */
.mova-password-form-description {
  font-family: "AcuminPro", sans-serif;
  font-size: 14px;
  color: #555;
  margin: 16px 0 24px;
  line-height: 1.6;
}

/* ── Champ label ─────────────────────────────────────────────── */
.mova-password-form-label {
  display: block;
  font-family: "AcuminPro", sans-serif;
  font-size: 14px;
  font-weight: 600 !important;
  color: #1a4759;
  margin-bottom: 6px;
}

/* ── Groupe input + bouton œil ───────────────────────────────── */
.mova-password-form-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

/* ── Input ───────────────────────────────────────────────────── */
.mova-password-form-input {
  width: 100%;
  /* padding: 12px 44px 12px 14px; */
  padding: 12px 14px;
  font-family: "AcuminPro", sans-serif;
  font-size: 14px;
  color: #1a4759;
  background: #fff;
  border: 1px solid #d0d5dd;
  border-radius: 0;
  outline: none;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
  box-sizing: border-box;
}

.mova-password-form-input:focus {
  border-color: #1a4759;
  box-shadow: 0 0 0 3px rgba(26, 71, 89, 0.1);
}

.mova-password-form-input::placeholder {
  color: #999;
}

/* ── Bouton afficher / masquer ───────────────────────────────── */
.mova-password-toggle {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #999;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.mova-password-toggle:hover {
  color: #1a4759;
}

/* ── Bouton soumettre ────────────────────────────────────────── */
.mova-password-form-submit {
  font-family: "AcuminPro", sans-serif;
  font-size: 0.9rem;
  font-weight: 600 !important;
  color: inherit;
  background: #ffffff00;
  border: 1px solid #1a4759;
  border-radius: 0;
  padding: 10px 14px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 1.5rem;
}

.mova-password-form-submit:hover {
  background: #1a4759;
  color: #fff;
}

.mova-password-form-submit:focus {
  background: #1a4759;
  color: #fff;
}

.mova-password-form-submit:active {
  background: #15394a;
  color: #fff;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 480px) {
  .mova-password-form-inner {
    padding: 28px 20px;
  }

  .mova-password-form-submit {
    width: 100%;
  }
}
