/* Conteneur principal */
.container.form-container {
  width: 100%;
  max-width: 1000px;
}

/* Titres */
.page-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}

/* Cartes */
.card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

/* Champs de formulaire */
.form-control {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

/* Labels */
.form-label {
  font-weight: bold;
  margin-bottom: 5px;
  display: block;
}

/* Boutons */
.btn-primary {
  background-color: #007bff;
  border: none;
  padding: 10px 15px;
  font-size: 16px;
  border-radius: 5px;
  color: white;
  cursor: pointer;
  width: 100%;
}

.btn-primary:hover {
  background-color: #0056b3;
}

/* Lien de récupération de mot de passe */
a {
  text-decoration: none;
  color: #007bff;
}

a:hover {
  text-decoration: underline;
}

/* Cases à cocher */
.form-check-input {
  margin-right: 5px;
}