
/*  HEAD FORM */

.logo {
  display: flex;
  justify-content:center;
  align-items: center ;
}

nav {
  display: flex;
  justify-content: space-between;
  background-color: rgb(246, 229, 243);
  list-style-type: none;
  padding: 10px;
  

}




.headForm {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: black;
}



/*   MainForm conteiner Form  */

.mainForm {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}


/* Style de base pour le body */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f7fa;
    margin: 0;
    padding: 0;
    display: ;
    justify-content: ;
    align-items: ;
    height: 100vh;
    
  }
  
  /* Conteneur du formulaire */
  form {

    text-align: center;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
  }
  
  /* Style des labels */
  label {
    display: block;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #333;
  }
  
  /* Style des champs de saisie */
  input[type="email"], 
  textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
  }
  
  /* Style du champ textarea */
  textarea {
    height: 150px;
    resize: vertical;
  }
  
  /* Style du bouton */
  button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
    margin-top: 10px;
  }
  
  /* Changement de couleur du bouton au survol */
  button:hover {
    background-color: #0056b3;
  }
  
  /* Style des erreurs de validation */
  input:invalid, 
  textarea:invalid {
    border-color: red;
  }
  
  input:valid, 
  textarea:valid {
    border-color: green;
  }
  






  /* FOOTER */



footer {
  background-color: rgb(246, 229, 243); 
}


li {
  padding: 10px;
}


a {
  list-style-type: none;
}

footer h3 {
  padding: 0px;
}



.gridfooter {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 10px;

}


.lione {
  color: black;
  
  padding-top: 10px;
  padding-left: 10px;

}

.litwo {
  color: black;
  text-decoration: none;
  list-style-type: none;
}

.ulFooter {
  list-style-type: none;
}

.footthree  {
  color: black;
  padding: 10px;
  text-decoration: none;
  
}

.paraFooter {
  color: black;
  padding-top: 20px;
  padding: 10px;
}