body.orphic-inscription-body {
  background-color: #f0f0f0; /* Fond gris clair */
  font-family: sans-serif;
  display: flex;
  justify-content: center;
  align-items: flex-start; /* Aligner en haut pour les formulaires longs */
  min-height: 100vh;
  margin: 0;
  padding: 40px 20px; /* Plus de padding en haut/bas */
  box-sizing: border-box;
}

.orphic-auth-container {
  background-color: #ffffff;
  padding: 30px 40px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 550px; /* Un peu plus large pour le formulaire d'inscription */
}

.orphic-auth-form-container h1 {
  text-align: center;
  color: #333;
  margin-bottom: 25px;
}

.orphic-inscription-intro {
  margin-bottom: 25px;
  font-size: 0.95em;
  line-height: 1.6;
  color: #444;
}

.orphic-inscription-intro p {
  margin-bottom: 10px;
}

.orphic-auth-form .form-group {
  margin-bottom: 20px;
}

.orphic-auth-form label {
  display: block;
  margin-bottom: 8px;
  color: #555;
  font-weight: bold;
}

.orphic-auth-form input[type="email"],
.orphic-auth-form input[type="password"],
.orphic-auth-form input[type="text"] {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 16px;
}

.orphic-auth-form #password-constraints {
  display: block;
  font-size: 0.85em;
  color: #666;
  margin-top: 8px;
}

.orphic-auth-form #password-constraints ul {
  padding-left: 20px;
  margin-top: 5px;
  margin-bottom: 0;
}

.orphic-auth-form #password-constraints li {
  margin-bottom: 3px;
}

.orphic-auth-form .error-message {
  color: red;
  font-size: 0.9em;
  margin-top: -10px;
  margin-bottom: 15px;
  min-height: 1.2em;
}

.orphic-auth-button {
  width: 100%;
  padding: 12px;
  background-color: var(--wp--preset--color--primary);
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.orphic-auth-button:hover {
  background-color: var(--wp--preset--color--primary-hover);
}

.orphic-auth-links {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9em;
}

.orphic-auth-links a {
  color: var(--wp--preset--color--primary);
  text-decoration: none;
}

.orphic-auth-links a:hover {
  text-decoration: underline;
}

/* Styles spécifiques pour la page d'inscription */
.orphic-inscription-page {
  /* ... */
}
