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

.fond{
  background-image: url(/assets/Img/bene.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;
}

.benevole__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: 80%;
  margin: 50px auto;
  padding: 20px;
  border-radius: 18px;
}


.form__content__input{
  font-size: 18px;
  display: flex;
  justify-content: space-around;
}

.content__firstCol{
  display: flex;
  flex-direction: column; 
  width: 25%;
}
.content__firstCol input{
  width: 100%;
  height: 35px;
  margin-top: 10px;
  margin-bottom: 15px;
}

.content__second{
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.genre__checkbox{
  margin-top: 10px;
}

.genre__checkbox div{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 10px;
}


.genre__checkbox input{
  cursor: pointer;
  height: 20px;
  width: 20px;
  border-radius: 100%;
}
.permis__checkbox{
  margin-top: 10px;
}

.permis__checkbox div{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 10px;
}


.permis__checkbox input{
  cursor: pointer;
  height: 20px;
  width: 20px;
  border-radius: 100%;
}

span{
  color: red;
}

.form__content__tarea{
  margin: 10px 0px 0px 60px;
  font-size: 18px;
}

.form__content__tarea textarea{
  resize: none;
  margin-top: 10px;
  width: 675px;
  height: 80px;
}

.form__content__btn{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}

.form__content__btn button{
  background-color: #0e0f0e;
  border: none;
  border-radius: 10px;
  padding: 10px;
  width: 50%;
  color: #80C6FF;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
}

@media screen and (max-width : 750px) {
  .form__content__input{
    flex-direction: column;
  }
  .content__firstCol{
    width: 100%;
  }
  .form__content__tarea{
    margin:50px auto 0px auto;
  }
  .form__content__tarea textarea{
    width: 100%;
    height: 150px;
  }
  .benevole__p{
    width: 90%;
  }
  h1{
    width: 80%;
  }
  hr{
    width: 70%;
  }
}