/* police d'ecriture */
*
{
  margin: 0;
  padding: 0;
  font-family: 'Poppins, sans-serif';
}

form {
    display: flex;
    flex-direction: column;
    max-width: 300px;
  }
  
  label {
    margin-top: 10px;
  }
  
  input, button {
    margin-top: 5px;
  }
  form input 
  {
    border-color: black;
  }

  form {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    margin: 0 auto;
  }
  
  label {
    margin-top: 10px;
  }
  
  input, select {
    margin-bottom: 10px;
    padding: 5px;
  }
  
  button, a {
    margin-top: 10px;
    padding: 5px 10px;
    background: rgb(73, 95, 242);
    border: none;
    color: white;
    text-align: center;
    text-decoration: none;
  }
  body 
  {
    background: white;
    color: #000; 
  }
  .contac-form #btn
  {
    background: red;
  }
