form {
    display: flex;
    flex-direction: column;
    gap: 1em;
  }
  input, select, textarea {
    padding: 0.8em;
  }

  textarea{
    width: 100%;
  }

select, option, input{
font-size: 90%;
  }

  #send {
    color: white;
    padding: 0.8em;
    border: none;
    cursor: pointer;
    width: 6em;
  }

  #form-response{
    margin-top: 1em;
    margin-bottom: 1em; 
    color: green;
  }

  #contact{
    visibility: hidden;
  }

  #contact-form{
    display: none;
    margin:auto;
  }


  .form-check-input {
  margin-top: 0.2em;
  cursor: pointer;
}
.form-check-label {
  cursor: pointer;
}

.contact-icons {
  align-items: center;
}

.icon-circle {
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 18px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  background-color: #c2b7ad; 
  text-align: center;
}

.icon-circle:hover {
  background-color: #463f32; 
}

i{
  margin-top: 0.5em;
}

.lien{
  cursor: pointer;
  color: #463f32;
}

.lien:hover{
  font-weight: bold;
}


