/* ------------------------ Fond d'image ------------------------ */

.fond{
  background-image: url(/assets/Img/AdobeStock_470465742.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100dvh;
  min-height: 100vh;
}



h1{
  text-align: center;
  font-size: 30px;
  margin: 50px auto;
}

.contact__p{
  text-align: center;
  font-size: 18px;
  width: 50%;
  margin: 10px auto;
  font-weight: 600;
}

hr{
  height: 1.5px;
  background-color: #0e0f0e;
  border: none;
  width: 30%;
  margin: 50px auto;
}

form{
  border: 1.5px solid #0e0f0e;
  width: 70%;
  margin: 50px auto;
  padding: 20px;
  border-radius: 18px;
}

.flex{
  display: flex;
  width: 100%;
}
.flex div{
  width: 100%;
  padding: 0px 10px;
}
.flex input{
  width: 100%;
}
label{
  font-size: 18px;
}
input{
  width: 100%;
  height: 40px;
  margin-top: 10px;
  margin-bottom: 15px;
}

.email{
  padding: 0px 10px;
}
textarea{
  margin-top: 10px;
  margin-bottom: 20px;
  width: 100%;
  height: 250px;
  resize: none;
}
.message{
  padding: 0px 10px;
}
.divboutton{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}
.divboutton .button{
  background-color: #0e0f0e;
  border: none;
  border-radius: 10px;
  padding: 10px;
  width: 50%;
  color: #80C6FF;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
}

span{
  color: red;
}

@media screen and (max-width : 750px) {
  .flex{
    flex-direction: column;
  }
  form{
    width: 80%;
  }
  .contact__p{
    width: 90%;
  }
  h1{
    width: 80%;
  }
  hr{
    width: 70%;
  }
}