/* ! RESET CSS*/
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Lato", sans-serif;
}

/* * Main content of the page*/
/* Header of the page*/
header {
  background-color: #004990;
  border: solid #004990 2px;
  /* border: dotted white 8px; */ /* TODO Effet noël*/
}
.headerTitle {
  font-size: 1.5em;
  text-align: center;
  color: #ee2930;
}
.subtitleHeaderContainer {
  margin-top: 20px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.iconRF,
.iconAN {
  width: 40px;
}

.horizontalLine {
  height: 6px;
  width: 100%;
  background-color: black;
}
/* Form*/
.formContainer {
  margin-top: 30px;
}
.formTitle {
  color: #233f6b;
  font-size: 2em;
  text-align: center;
}
.form {
  display: flex;
  flex-direction: column;
  align-items: center;
}
label {
  margin-top: 10px;
}
.formButtonsContainer {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  margin-top: 20px;
}
.resetButton {
  background: #d00000;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-right: 25px;
  padding-left: 25px;
  font-size: 1em;
  border-width: 2px;
  border-style: solid;
  border-color: black;
  cursor: pointer;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: 0.3s;
}
.submitButton {
  background: rgb(153, 194, 33);
  padding-top: 5px;
  padding-bottom: 5px;
  padding-right: 25px;
  padding-left: 25px;
  font-size: 1em;
  font-weight: bold;
  border-width: 2px;
  border-style: solid;
  border-color: black;
  cursor: pointer;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: 0.3s;
}
.submitButton:hover {
  box-shadow: 0px 0px 40px rgb(153, 194, 33);
}
.submitButton:active {
  background: green;
  color: white;
}
.resetButton:hover {
  box-shadow: 0px 0px 35px #d00000;
}
.resetButton:active {
  background: #a70d07;
  color: white;
}
/* Footer*/
.elementFooter {
  margin-top: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: black;
  font-size: 0.7em;
}
.copyrightIcon {
  color: #ff8a11;
  font-size: 1.2em;
}

/* ! Media queries*/
@media screen and (max-width: 440px) {
  .formTitle {
    font-size: 1.6em;
  }
  .formButtonsContainer {
    flex-direction: column-reverse;
    width: 50%;
    gap: 15px;
  }
  .submitButton:hover {
    box-shadow: 0px 0px 20px rgb(153, 194, 33);
  }
  .resetButton:hover {
    box-shadow: 0px 0px 15px #d00000;
  }
}
@media screen and (max-width: 390px) {
  .resetButton {
    letter-spacing: 0em;
  }
  .submitButton {
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 340px) {
  .resetButton {
    font-size: 0.8em;
  }
  .submitButton {
    font-size: 0.8em;
  }
}
/* TODO Media querie : effet noël*/
/* @media screen and (max-width: 768px) {
  header {
    background-color: #004990;
    border: dotted white 7px;
  }
}
@media screen and (max-width: 400px) {
  header {
    background-color: #004990;
    border: dotted white 4px;
  }
} */
