body {
  display: flex;
  flex-direction: column;
}

#formRecherche {
  display: none;
}

h1 {
  width: 100%;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 20px;
  color: #ffc800;

}

.center-h h3 {
  color: hotpink;
}

.content {
  flex-grow: 1;
  box-sizing: border-box;
  border-radius: 5px;
  background-color: #f8f8f8;
  padding: 20px;
  max-width: 800px;
  margin: 50px auto;
  box-shadow: 0 5px 15px rgb(0 0 0 / 12%), 0 5px 10px rgb(0 0 0 / 24%);
}


form {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

fieldset {
  margin: auto;
  padding: 15px;
  border-radius: 5px;
}

fieldset legend {
  font-weight: 600;
  padding: 10px;
  margin-bottom: 20px;
}

fieldset div :nth-child(2) {
  color: #069;
  font-weight: 600;
  margin-bottom: 8px;
}

fieldset div :nth-child(1):nth-of-type(radio) {
  margin-top: 10px;
  text-decoration: underline;
}

fieldset .icone {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: baseline;
}

fieldset div .fa-circle-xmark {
  color: red;
}

.box {
  padding: 10px;
  background-color: #f8f8f8;
}

.box fieldset .radio {
  height: 38%;
  margin: 10px 0;
}

.box fieldset .radio div {
  margin: 10px 0;
}

.box-1 {
  width: 100%;
}

.box-2 {
  width: 50%;
}


.box-3 {
  width: 50%;
}

.box-4 {
  width: 100%;
}

.box-2 fieldset,
.box-3 fieldset {
  height: 100%;
}

form input[type="text"],
form textarea,
form input[type="email"],
form input[type="tel"],
form select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  margin-right: 0px;
  margin-left: 0px;
  resize: none;
}

form .input-label label em {
  color: red;
  font-weight: bold;
  font-style: normal;
  font-size: 1em;
}

input[type="submit"] {
  width: 100%;
  color: white;
  background-color: #1255a2;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

input[type="submit"]:hover {
  background-color: #1872d9;
}

input[type="file"] {
  width: 100%;
  color: purple;
  padding: 12px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.input-label p {
  font-size: 0.6rem;
  font-weight: 600;
  color: #1872d9;
}

@media (max-width: 770px) {
  form {
    flex-direction: column;
    width: 100%;
  }

  .box {
    width: 100%;
  }

  .content {
    margin: 0 10px;
  }
}