body {
  background-color: black !important;
  font-family: "Cinzel Decorative" !important;
  color: white !important;
}

main{
  margin-top: 90px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  border: 1px solid #5B0613;
    -webkit-text-fill-color: #ffffff;
    -webkit-box-shadow: 0 0 0px 1000px #171717 inset !important;
}

@media screen and (max-width: 600px) {
.formulaire{
  margin: 50px 10px;
}
}
@media screen and (max-width: 1000px) and (min-width: 600px) {
  .formulaire{
    margin: 150px 100px;
  }
  }
  @media screen and (min-width: 1000px) and (max-width: 1200px) {
    .formulaire{
      margin: 150px 150px;
    }
    }
    @media screen and (min-width: 1200px) and (max-width: 1400px) {
      .formulaire{
        margin: 150px 200px;
      }
      }
      @media screen and (min-width: 1400px) {
        .formulaire{
          margin: 150px 250px;
        }
        }

.form {
    display: flex;
    flex-direction: column;
    align-self: center;
    /* font-family: inherit; */
    gap: 10px;
    padding-inline: 2em;
    padding-bottom: 0.4em;
    background-color: #171717;
    background-color: black;
    border-radius: 20px;
    /* max-width: 1000px; */
  }
  
  .form-heading {
    text-align: center;
    margin-top: 2em;
    margin-bottom: 2em;
    color: white;
    font-size: clamp(25px, 2vw, 35px);
    /* font-size: clamp(2rem, 7vw, 4rem); */
    background-color: transparent;
    /* align-self: center; */
  }
  
  .form-field {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    border-radius: 10px;
    padding: 0.6em;
    border: none;
    outline: none;
    color: white;
    background-color: #171717;
    box-shadow: inset 2px 5px 10px rgb(5, 5, 5);
  }
  
  .inputfield {
    background: none;
    border: none;
    outline: none;
    width: 100%;
    color: #ccd6f6;
    padding-inline: 1em;
  }
  
  .sendMessage-btn {
    /* font-size: clamp(16px, 2vw, 20px); */
    cursor: pointer;
    margin-bottom: 3em;
    padding: 1em;
    border-radius: 10px;
    border: none;
    outline: none;
    background-color: transparent;
    color: #5B0613;
    font-weight: bold;
    outline: 1px solid #5B0613;
    transition: all ease-in-out 0.3s;
  }
  
  .sendMessage-btn:hover {
    transition: all ease-in-out 0.3s;
    background-color: #5B0613;
    color: #000;
    cursor: pointer;
    box-shadow: inset 2px 5px 10px rgb(5, 5, 5);
  }
  
  .form-card1 {
    background-image: linear-gradient(163deg, #5B0613 0%, #5B0613 100%);
    border-radius: 22px;
    transition: all 0.3s;
  }
  
  .form-card1:hover {
    box-shadow: 0px 0px 30px 1px #5b06139f;
  }
  
  .form-card2 {
    border-radius: 0;
    transition: all 0.2s;
  }
  
  .form-card2:hover {
    transform: scale(0.98);
    border-radius: 20px;
  }
  
  #message {
    max-height: 80vh;
    min-height: 75px;
    overflow-y: hidden;
  }