/* password-reset.css */
:root {
  --color-primary: #002D62;   /* bleu foncé */
  --color-secondary: #B2986D; /* beige doré */
  --color-bg: #f9f9f9;
  --color-text: #333;
  --space-lg: 2rem;
  --radius: 6px;
  --font-main: 'Nunito', sans-serif;
}

/* Container full-screen */
.pr-container {
  display: flex;
  height: 100vh;
  width: 100vw;
  background: var(--color-bg);
}

/* Inner wrapper: deux colonnes 50/50 */
.pr-inner {
  display: flex;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.pr-left,
.pr-right {
  flex: 0 0 50%;
  height: 100vh;
}

/* Colonne gauche : centrée + fond beige doré */
.pr-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(178,152,109,0.1);
  padding: var(--space-lg);
  font-family: var(--font-main);
  overflow-y: auto;
}

/* Logo */
.pr-logo {
  display: inline-block;
  margin-bottom: calc(var(--space-lg) * 1.5);
}

/* Titre et texte en blanc */
.pr-left h1,
.pr-left a,
.pr-left p,
.pr-alt,
.pr-field label,
.um-field-block {
  color: var(--color-primary);
  text-align: center;
}

.pr-left h1 {
  font-size: 1.75rem;
  margin-bottom: var(--space-lg);
}

/* Champ formulaire */
.pr-field {
  width: 100%;
  max-width: 320px;
  margin-bottom: var(--space-lg);
}

.pr-field input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius);
  background: transparent;
  color: #fff;
}

.pr-field input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.pr-field input:focus {
  border-color: #fff;
  outline: none;
}

/* Bouton Ultimate Member */
.um-form input[type="submit"],
.um-form button.um-button {
  background-color: #002f54 !important;
  color: #fff !important;
  border: none;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color 0.2s;
  font-weight: bold;
  font-size: 1rem;
}

.um-form input[type="submit"]:hover,
.um-form button.um-button:hover {
  background-color: #001f3a !important;
}

/* Lien secondaire */
.pr-alt {
  margin-top: var(--space-lg);
  font-size: 0.95rem;
}

.pr-alt a {
  color: var(--color-primary);
  text-decoration: underline;
}

/* Colonne droite : illustration */
.pr-right {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg);
  padding:0 50px;
}

.pr-right img {
  max-width: 100%;
  height: auto;
}

/* Mobile : stack vertical et masquer illustration */
@media (max-width: 768px) {
  .pr-inner {
    flex-direction: column;
  }

  .pr-left,
  .pr-right {
    flex: 1 1 100%;
    height: auto;
  }

  .pr-right {
    display: none;
  }
}
