/* Réinitialisation des styles par défaut */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f1f1f1;
}

#entete {
  text-align: center;
  padding: 20px;
  background-color: #003C98; /* Bleu bic */
  color: #fff;
}
#entete p a
  {
  text-decoration: none;
  color:white;
  font-weight: bold;
  font-size: 140%;
}

#entete2 {
  text-align: center;
  padding: 10px;
  
}
#entete2 p a
  {
  text-decoration: none;
  color:white;
  font-weight: bold;
  font-size: 100%;
  color: black; 
}

#forminscription {
  max-width: 400px;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 5px;
  margin-top: 30px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#forminscription label {
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}

#forminscription select,
#forminscription input[type="tel"],
#forminscription input[type="password"] {
  width: 100%;
  height: 40px;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 3px;
}

#forminscription input[type="tel"],
#forminscription input[type="password"] {
  padding-left: 50px; /* Ajout d'un espace pour l'indicatif */
}

#forminscription input[type="submit"] {
  width: 100%;
  height: 40px;
  padding: 10px;
  background-color: #003C98; /* Bleu bic */
  color: #fff;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-size: 120%;
}

#erreur {
  text-align: center;
  margin-top: 20px;
  color: #ff0000;
}
