.elementor-widget-section .eael-protected-content-message{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-section .protected-content-error-msg{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-template .eael-protected-content-message{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-template .protected-content-error-msg{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}#elementor-popup-modal-8542{background-color:rgba(0,0,0,.8);justify-content:center;align-items:center;pointer-events:all;}#elementor-popup-modal-8542 .dialog-message{width:640px;height:auto;}#elementor-popup-modal-8542 .dialog-close-button{display:flex;}#elementor-popup-modal-8542 .dialog-widget-content{border-radius:50px 50px 50px 50px;box-shadow:2px 8px 23px 3px rgba(0,0,0,0.2);}/* Start custom CSS *//* Centrer verticalement et créer une bulle */
#tutor-registration-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;  /* Centrage vertical */
  min-height: 80vh;
  padding: 40px 0;
  background: #f5f7fb;
}

/* Style bulle (card) pour le formulaire */
#tutor-registration-form {
  background: #fff;
  padding: 40px 32px 32px 32px;
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(60,72,90,0.08);
  max-width: 460px;
  width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Aligner chaque ligne de deux champs bien sur la même baseline */
.tutor-form-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 18px;
  margin-bottom: 0;
}

.tutor-form-col-6 {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Labels au-dessus, padding uniforme */
.tutor-form-group label {
  margin-bottom: 7px;
  font-size: 0.97em;
  color: #384154;
  font-weight: 600;
}

.tutor-form-group input[type=text], 
.tutor-form-group input[type=password] {
  width: 100%;
  margin-bottom: 0;
  min-height: 42px;
  border-radius: 7px;
  border: 1px solid #e2e6ef;
  padding: 0 12px;
  background: #f9fafe;
  font-size: 1em;
  box-sizing: border-box;
  transition: border 0.2s;
}

.tutor-form-group input:focus {
  border: 1.6px solid #2b62f7;
  outline: none;
  background: #fff;
}

/* Pour la responsivité */
@media (max-width: 700px) {
  #tutor-registration-form {
    padding: 18px 5vw;
    max-width: 98vw;
  }
  .tutor-form-row {
    flex-direction: column;
    gap: 0;
  }
}

.tutor-form-group h2 {
  display: none;
}

/* Forcer UNIQUEMENT la rangée des mots de passe en pleine largeur */
.tutor-form-row:has(input[type="password"]) {
  flex-wrap: wrap;                 /* on casse la grille 2 colonnes pour cette ligne */
  gap: 18px;
}

.tutor-form-row:has(input[type="password"]) .tutor-form-col-6 {
  flex: 0 0 100%;                  /* chaque champ = 100% */
}

/* Petites finitions : jauge/hint WordPress s’étirent aussi */
.tutor-form-row:has(input[type="password"]) .woocommerce-password-strength,
.tutor-form-row:has(input[type="password"]) .woocommerce-password-hint {
  width: 100%;
  max-width: 100%;
}/* End custom CSS */