.container{
    width: 100%;
    height: 100%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}
.form-contact{
    background: rgb(238, 145, 173);
    display: flex;
    flex-direction: column;
    padding: 2vw 4vw;
    width: 90%;
    max-width: 600px;
    border-radius: 10px;
}
.form-contact h3{
    font-weight: 800;
}
.form-contact h4{
    font-weight: 400;
    margin-bottom: 20px;
}
.form-contact input{
    background: white;
    max-width: 500px;
    border: 0;
    border-radius: 20px;
    margin: 10px 0;
    padding: 15px;
    outline: none;
    font-size: 16px;
    box-shadow: 1px 1px 5px ;
    box-sizing: border-box;
}

textarea{
    border: 0;
    border-radius: 20px;
    margin: 10px 0;
    padding: 15px;
    outline: none;
    background: white;
    font-size: 16px;
    resize: none;
    box-shadow: 1px 1px 5px ;
    max-width: 600px;
}

input[type="submit"]{
  padding: 10px;
  background: white;
  color: red;
  font-size: 16px;
  border: 0;
  outline: none;
  cursor: pointer;
  margin: 20px auto 0;
  border-radius: 30px;
  max-width: 600px;
}

input[type="submit"]:hover{
  transition: 0.3s;
  color: black;
}

#thankYouModal{ display:none ; }

@media screen and (max-width: 978px) {
  .container{
    width: 100%;
  }
}
