/* ==== Style général de la page ==== */
body {
  background-color: #f8f9fa;
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  color: #212529;
}

/* Centrage du contenu */
.container {
  margin-top: 60px;
  padding: 20px;
}

/* Formulaire de connexion */
form {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

/* Champs de formulaire */
form input[type="text"],
form input[type="password"],
form input[type="email"] {
  width: 100%;
  padding: 10px 14px;
  margin-bottom: 15px;
  border: 1px solid #ced4da;
  border-radius: 6px;
  font-size: 1rem;
}

form input:focus {
  outline: none;
  border-color: #0d6efd;
  box-shadow: 0 0 0 2px rgba(13, 110, 253, 0.2);
}

/* Bouton principal */
form button[type="submit"] {
  background-color: #0d6efd;
  color: white;
  padding: 10px;
  width: 100%;
  border: none;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form button[type="submit"]:hover {
  background-color: #0b5ed7;
}

/* Liens d'aide */
.text-center a {
  color: #0d6efd;
  text-decoration: none;
  font-weight: 500;
}

.text-center a:hover {
  text-decoration: underline;
}

/* Titre */
h2 {
  font-weight: 600;
  text-align: center;
  margin-bottom: 25px;
}
