/* Amélioration de la présentation du formulaire */
.card-form {
  margin-bottom: 20px;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card-title {
  font-size: 1.5em;
  color: #0A0F2B;
  margin-bottom: 15px;
  font-weight: bold;
}

/* Grille de deux colonnes pour les coordonnées client et autres sections */
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.form-grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 15px;
}

/* Spacing between form fields */
.form-group {
  margin-bottom: 15px;
}

/* Label style */
label {
  font-weight: bold;
  margin-bottom: 5px;
  display: block;
  color: #0A0F2B;
}

/* Input field style */
input[type="text"], input[type="email"], input[type="tel"], input[type="number"], input[type="date"], input[type="time"], textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #D6D6D6;
  border-radius: 8px;
  font-size: 1em;
  box-sizing: border-box;
  background-color: #f9f9f9;
}

/* Texte d'alerte pour le calcul des autocars */
#calcul-autocars {
  font-size: 1.1em;
  color: #790078;
  font-weight: bold;
  margin-top: 15px;
}

/* Section Programme du séjour */
#programme-wrapper {
  background-color: #f4f4f4;
  padding: 20px;
  border-radius: 10px;
  margin-top: 20px;
}

.programme-day {
  margin-bottom: 20px;
  padding: 15px;
  background-color: #ffffff;
  border: 1px solid #D6D6D6;
  border-radius: 10px;
}

.programme-day h4 {
  font-size: 1.2em;
  margin-bottom: 15px;
  color: #790078;
}

.programme-day input, .programme-day textarea {
  margin-bottom: 10px;
}

textarea {
  resize: vertical;
  height: 120px;
}

/* Section de validation RGPD */
.check input[type="checkbox"] {
  margin-right: 10px;
}

.check label {
  font-size: 0.9em;
  color: #444444;
}

/* Bouton d'envoi du formulaire */
.btn-submit {
  background-color: #790078;
  color: white;
  font-size: 1.1em;
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  text-align: center;
}

.btn-submit:hover {
  background-color: #660055;
}

