<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */
input, label, legend {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
/*Pour éviter l'affiche du box-shadow généré par le navigateur en cas d'invalidité des info - ex: mail non conforme*/ :invalid {
  box-shadow: none;
}
:-moz-submit-invalid {
  box-shadow: none;
}
:-moz-ui-invalid {
  box-shadow: none;
}
/*Fin*/
/* supprimer la bordure noir au focus sur Chrome */
* {
  outline: none;
}
form &gt; div {
  clear: both;
  overflow: hidden;
  padding: 1px;
  margin: 0 0 10px 0;
  font-size: 14px;
}
form &gt; div &gt; fieldset &gt; div &gt; div {
  margin: 0 0 10px 0;
}
form &gt; div &gt; label, legend {
  padding-right: 0px;
}
form &gt; div &gt; div, form &gt; div &gt; fieldset &gt; div {
  width: 100%;
}
form h5 {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  padding-top: 40px;
  padding-bottom: 20px;
}
fieldset {
  border: 0;
  padding: 0;
}
label {
  display: block;
  font-family: "Manrope Bold";
  text-align: left;
  height: auto;
  margin-top: 6px;
  font-size: 15px;
}
input[type=text], input[type=email], input[type=tel], input[type=url], input[type=password], textarea, select {
  width: 100%;
  height: 50px;
  border-radius: 8px;
  border: 2px solid #E2E2E4;
  margin: 3px 1px 3px 0px; /*pour le focus*/
  padding: 3px 0px 3px 20px; /*pour le focus*/
  font-size: 15px;
  color: #283c50;
}
textarea {
  font-family: "Manrope Regular";
  width: 100%;
  height: 150px;
  font-size: 15px;
  color: #283c50;
  margin: 3px 1px 3px 0px; /*pour le focus*/
  padding: 3px 0px 3px 20px; /*pour le focus*/
}
select {
  font-family: "Manrope Regular";
  width: 100%;
  height: 50px;
  font-size: 15px;
  color: #283c50;
}
input[type=text]:focus, input[type=email]:focus, input[type=tel]:focus, input[type=url]:focus, input[type=password]:focus, select:focus {
  margin: 3px 1px 3px 0px;
  padding: 3px 0px 3px 20px;
  border: 1px solid rgb(131, 149, 173); /*#8395ad*/
}
textarea:focus {
  margin: 3px 1px 3px 0px;
  padding: 3px 0px 3px 20px;
  border: 1px solid rgb(131, 149, 173); /*#8395ad*/
}
.notes {
  color: #FF0000;
}
.notes-input {
  font-family: "Manrope Regular";
  font-size: 14px;
  color: #FF0000;
}
.notes_submit {
  font-size: 14px;
  padding: 5px;
  margin-bottom: 5px;
  color: #FF0000;
}
.notes_ok {
  display: none;
}
/* pas de input[type=button] car appel d'ID spécifique par le js dans ce type éléménts*/
#sendform {
  font-family: "Manrope SemiBold";
  font-size: 17px;
  width: 250px;
  height: 50px;
  margin-top: 20px;
  background: #6419BE;
  border: 0 none;
  cursor: pointer;
  border-radius: 10px;
  color: #ffffff;
  text-align: center;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
#sendform:hover {
  /*opacity: 0.7;*/
  background: #500FA0;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  transition-duration: 0.3s;
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 80, 0.12);
}
#nosendform {
  font-family: "Manrope SemiBold";
  font-size: 17px;
  color: #ffffff;
  text-decoration: line-through;
  padding: 5px 15px;
  width: 250px;
  height: 50px;
  margin-top: 20px;
  background: #5B6E83;
  border: 0 none;
  cursor: pointer;
  border-radius: 10px;
}
@media only screen and (max-width : 959px) {
  form &gt; div &gt; fieldset &gt; div &gt; div {
    margin: 0 0 5px 0;
  }
  form h5 {
    padding-top: 40px 0 0;
  }
}</pre></body></html>