.red-color {
    color: red;
}

/* Fond des inputs et selects */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
.select-el,
textarea {
  background-color: #f5f8fa;
  border-radius: 20px;
  border: 1px solid #ced4da;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

/* Fond + bordure quand focus (input, select, textarea) */
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
.select-el,
textarea:focus {
  background-color: #add4f4;
  border-color: #add4f4;
  outline: none;
  box-shadow: none; /* Supprime l'effet bleu Bootstrap */
}

/* Labels en gras */
label {
  font-weight: bold;
}

/* Bouton submit */
.send-btn {
  background-color: #fbba00;
  color: #000;
  border: none;
  border-radius: 20px;
  padding: 10px 20px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #e0a800;
  color: #000;
}