/* Style du formulaire*/
.form {
    margin-bottom: 100px !important;
    max-width: 80%;
    margin: 0 auto;
    background-color: #609A7D;
    padding: 30px;
    border-radius: 10px;
  }
  
  .label, .box-title {
    color: white;
    font-weight: bold;
    font-family: 'Noto Sans', sans-serif;
  }
  
  input[type="text"], textarea {
    padding: 15px;
    border: 1px solid white;
    border-radius: 50px;
  }
  
  .form-button {
    margin: auto;
    font-family: 'Reenie Beanie', cursive;
    font-size: 30px;
  }

input, textarea {
    display: block;
    margin-bottom: 10px;
}

input[type="text"], textarea {
    width: 100%;
}

#inputEmail, #inputPassword {
    border-radius: 50px;
}

.form-button {
    margin-top: 30px;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
    border-color: #375a48;
    outline: none;
    box-shadow: 0 0 5px 2px rgba(55, 90, 72, 0.5);
}

@media screen and (min-width:700px) {
    .form {
        width: 50%;
    }
}

@media screen and (min-width:1200px) {
    .form {
        max-width: 30%;
    }
}