main{
    height: auto;
    width: 100%;
  }

  .contactez-nous h3, label, #maxLength {
      color: black;
  }

.green {
    border: 2px solid green;
}

.red {
    border: 2px solid red;
}

.text-color-red {
    color: red;
    font-weight: bold;
}

body {
    font-family: Roboto, "sans-serif";
    justify-content: center; 
    background-color: #F5F1E3;
    }
    
   .form_title {
       text-align: center;
       font-size: 22px;
       text-transform: uppercase;
       margin: 0.5em;
       padding-bottom: 10px;
       border-bottom: 2px solid black;
   }
   
    .contactez-nous {
    max-width: 90%;
    padding: 0.5em 1em 1.5em 1em;
    background: white;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    }
    
    .contactez-nous > h1 {
    font-weight: 500;
    }
    
    .contactez-nous > p {
    font-weight: 300;
    }
    
    form div {
    width: 90%;
    display: flex;
    flex-direction: column;
    margin-top: 1em;
    margin-left: auto;
    margin-right: auto;
    }
    
    form div > label {
    margin-bottom: 7px;
    font-weight: 600;
    }
    
    form div > input, form div > select, form div > textarea {
    background: #303030;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    font-family: Roboto, "sans-serif";
    box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.25);
    color: whitesmoke;

    }
    
    form div > input, form div > select {
    height: 50px;
    padding-left: 10px;
    }
    
    
    form div > textarea {
    height: 195px;
    padding: 15px 0px 0px 10px;
    }
    
    form div > input::placeholder, form div > textarea::placeholder {
    color: white;
    }
    
    form div > select:invalid {
    color: white;
    }
    
    form div > select option {
    background: white;
    color: #303030;
    max-width: 80%;
    }
    
    form div:last-child {
    align-items:center;
    margin-top: 20px;
    }
    
    form button {
    width: 30%;
    max-width: 500px;
    min-height: 30px;
    font-weight: 700;
    font-size: 18px;
    background: white;
    border: rgba(48, 48, 48, 0.5) solid 1px;
    border-radius: 5px;
    box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.25);
    color: #303030;
    }