body {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  background-color: #dddddd;
  font-family: LTMuseum;
  font-size: 16px;
}

a {
  color: #f70302;
  text-decoration: none;
}

header {
  position: absolute;
  top: 0;
  left: 0;
}
main {
  display: none;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1000px;
  width: 80%;
  margin-top: 180px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
  box-sizing: border-box;
  /* border: 1px solid #000000; */
}

#choixContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  height: 60px;
  margin-bottom: 30px;
  color: #000000;
  background-color: #ffffff;
  border: 2px solid #000000;
  border-radius: 10px;
  box-shadow: 4px 4px 4px 0px #222222;
  font-size: 18px;
  font-weight: bold;
  /* background-color: aqua; */
}

#choixPrestation {
  width: fit-content;
  height: fit-content;
  padding: 4px 34px 4px 5px;
  margin-left: 6px;
  border: 1px solid #000000;
  border-radius: 4px;
  color: #000000;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url("../images/selectArrow.png") right/24px no-repeat;
  background-color: #fff;
}

#newAccountContainer {
  width: 40%;
  padding-bottom: 10px;
  color: #000000;
  background-color: #ffffff;
  border: 2px solid #000000;
  border-radius: 10px;
  box-shadow: 4px 4px 4px 0px #222222;
}

#connectionContainer {
  width: 40%;
  padding-bottom: 10px;
  color: #000000;
  background-color: #ffffff;
  border: 2px solid #000000;
  border-radius: 10px;
  box-shadow: 4px 4px 4px 0px #222222;
}

.headForm {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  height: 40px;
  font-size: 18px;
  font-weight: bold;
  background-color: #000000;
  color: #ffffff;
}

.newAccountForm {
  width: 96%;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  /* border: 1px solid #000000; */
}

.newAccountForm label {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  margin-bottom: 10px;
  font-weight: bold;
}

.newAccountForm label input {
  margin-left: 10px;
  flex: 1;
}

.eyePassword {
  position: absolute;
  bottom: 3px;
  right: 3px;
  width: 22px;
  height: 16px;
  cursor: pointer;
}

#lblPasswordForget,
#lblPasswordRemember {
  position: relative;
  top: -6px;
  text-align: end;
  color: #f70203;
  font-size: 14px;
  cursor: pointer;
}

.newAccountForm input[type="submit"] {
  display: block;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
  outline: 0;
  border: 0;
  padding: 4px 14px;
  background-color: #f70203;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  border-radius: 8px;
  box-shadow: 2px 2px 2px 0px #000000;
  cursor: pointer;
}

.newAccountForm input[type="submit"]:active {
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 1px 0px #000000;
}

/*-------------------------------------------------------------------*/
.toHidden {
  opacity: 0;
  transition: opacity 300ms linear;
}

.toVisible {
  opacity: 1;
  transition: opacity 300ms linear;
}

@media screen and (max-width: 1200px) {
  main {
    width: 90%;
    margin-top: 180px;
  }
  #choixContainer {
    font-size: 16px;
  }
  .headForm {
    font-size: 16px;
  }
  .newAccountForm label {
    font-size: 14px;
  }
}

@media screen and (max-width: 760px) {
  main {
    margin-top: 140px;
  }

  select {
    font-size: 12px;
    max-width: 90%;
  }
  #newAccountContainer {
    width: 100%;
  }

  #connectionContainer {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  main {
    margin-top: 120px;
  }
  select {
    font-size: 10px;
    width: 90%;
  }
}
