/* Fond général pour le formulaire */
.woocommerce form.login {
  background-color: #fff;
  border: 1px solid #eee;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
  max-width: 500px;
  margin: 0 auto;
}

/* Titre */
.woocommerce h2 {
  font-size: 28px;
  margin-bottom: 25px;
  text-align: center;
  color: #222;
  font-weight: 600;
}

/* Espace entre le titre "Se connecter" et le formulaire */
.woocommerce-account .woocommerce h2 + form.woocommerce-form-login {
  margin-top: 35px;
}

/* Champs texte */
.woocommerce form .form-row input.input-text {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 12px 15px;
  border: 1px solid #ddd;
  transition: border-color 0.3s ease;
}

.woocommerce form .form-row input.input-text:focus {
  border-color: #f76b1c; /* Orange Essensyo */
  outline: none;
}

/* Bouton de connexion */
.woocommerce-button.button {
  background-color: #f76b1c;
  color: #fff;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.woocommerce-button.button:hover {
  background-color: #e65f12;
}

/* Checkbox */
.woocommerce form .woocommerce-form-login__rememberme {
  margin-top: 10px;
}

.woocommerce form .woocommerce-form-login__rememberme input {
  margin-right: 5px;
}

/* Lien mot de passe perdu */
.woocommerce form .lost_password a {
  color: #f76b1c;
  font-weight: 500;
  text-decoration: underline;
  font-size: 14px;
}

.woocommerce form .lost_password a:hover {
  color: #e65f12;
}
