
/* formulaire de contact */
label {
  font-family: "Montez";
  font-size: 1.5em;
  color: #f9f0d5;
}

input {
  -webkit-appearance: none;
  appearance: none;
} /*Eviter que l'OS impose son thème*/

 /* Style inputs with type="text", select elements and textareas */
input[type=text], input[type=email], select, textarea {
  background-color: #036c76;
  color: #f9f0d5;
  width: 100%; /* Full width */
  padding: 12px; /* Some padding */ 
  border: none;
  border-top: 3px solid #f9f0d5; /* black border */
  /* border-radius: 4px; Rounded borders */
  box-sizing: border-box; /* Make sure that padding and width stays in place */
  margin-top: 6px; /* Add a top margin */
  margin-bottom: 30px; /* Bottom margin */
  resize: vertical; /* Allow the user to vertically resize the textarea (not horizontally) */  
  font-family: 'Karla';  
  font-size: 1.3em;
  transition: background-color 0.1s ease-in-out;
  
}

input[type=text]:focus,input[type=email]:focus, select:focus, textarea:focus {
  background-color: #013a3f;
}

/* Style the submit button with a specific background color etc */
input[type=submit] {
  background-color: #f9f0d5;
  color: #036c76;
  padding: 12px 30px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;  
  font-family: 'Karla';  
  font-size: 2em;
}

/* When moving the mouse over the submit button, add a darker green color */
input[type=submit]:hover {
  background-color: #b7b09d;
  text-decoration: none;
  /* border: none; */
}

