h1 {
  color: red;
}

body.orphic-connexion-body {
  background-color: #f0f0f0; /* Fond gris clair */
  font-family: sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  padding: 20px;
  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: 450px; /* Largeur maximale du formulaire */
}

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

.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 .error-message {
  color: red;
  font-size: 0.9em;
  margin-top: -10px; /* Réduire l'espace si le message est présent */
  margin-bottom: 15px;
  min-height: 1.2em; /* Garder un peu d'espace même si vide */
}

.orphic-auth-button {
  width: 100%;
  padding: 12px;
  background-color: var(--wp--preset--color--primary); /* Vert pour le bouton */
  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: #007bff;
  text-decoration: none;
}

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

/* Styles spécifiques pour la page de connexion si nécessaire */
.orphic-connexion-page {
  /* ... */
}
