

.titre-general-de-page {
  text-align: center;
  margin-top: 30px;
  color: #000000;
}

.titre-general-de-page-2 {
  text-align: center;
  margin-top: 2%;
}



.contact-container {
  width: 100%;
  max-width: 900px;
  margin: auto;
  padding: 20px;
}


.contact-formulaire-couleur-fond2 {
  background-color: #B6D8F2;
  /* background-color: #A9CBB7; couleur thème 1 */
  padding: 20px;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}


form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

label {
  font-weight: bold;
  margin-bottom: 5px;
}

#name{
  width: 40%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 15px;
  resize: none;
  height: 30px; 
}

#email{
  width: 60%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 15px;
  resize: none;
  height: 30px;   
}

#message {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 15px;
  resize: none;
  height: 150px; 
}


#captcha-img {
  margin: 10px 0;
  border: 1px solid #ccc;
  width: 100px;
}


button {
  padding: 10px 20px;
  background-color: #000000;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: fit-content;
  margin-top: 10px;
}

button:hover {
  background-color: #dc8503;
}


.contact-contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;

}


@media (max-width: 600px) {
  .contact-contact-info {
      flex-direction: column;
  }
}



#sujet {
  width: 60%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 15px;
  height: 40px;
}
