.modalWrapper{
  position: fixed;
  width: calc(100vw)!important;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6); /* fond sombre et transparent */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 50;
  animation: fadeIn 0.15s ease-in-out;
}

.modal{
  position: relative;
  background-color: #DB8876;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  width: 40%;
  color: #000;
}

.close{
  position: absolute;
  width: 45px;
  height: 45px;
  top: 25px;
  right: 25px;
  cursor: pointer;
}

.contactTitle{
    font-size: 48px;
    font-weight: 400;
    margin: 0;
}

.form{
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 15px;
}

.form label{
  font-weight: 400;
  font-size: 32px;
  color: #312E2E;
}

.form input,
.form textarea{
  border: none;
  border-radius: 4px;
  padding: 10px;
  font-weight: 400;
  font-size: 28px;
  color: #312E2E;
  min-height: 30px;
}

.submitButton{
  background-color: #901C1C;
  color: white;
  border: none;
  padding: 20px 40px;
  margin-top: 10px;
  border-radius: 4px;
  cursor: pointer;
  align-self: flex-start;
  font-weight: 700;
  font-size: 16px;
}

.submitButton:hover{
  background-color: #B02020;
}

@keyframes fadeIn{
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
