display section {
  display: none;
  margin: auto;
  max-width: 90%;
}

display section > button {
  background: var(--COLOR_alt);
  border-radius: 20px;
  border: none;
  cursor: pointer;
  color: white;
  display: block;
  font: bold 14px montserrat;
  margin: 25px 0 15px auto;
  padding: 10px 15px;
}

display section > div > h1 {
  color: var(--COLOR_main);
  font: bolder 23px montserrat;
  text-align: center;
  width: 100%;
}
display section > div > h2 {
  color: var(--COLOR_shadow);
  font: bolder 15px montserrat;
  text-align: center;
  margin: auto;
  width: 80%;
}

/*<><><><><><><><><><>*/

div.inputDatabox {
  display: block;
  margin-bottom: 15px;
  width: 100%;
}

div.inputDatabox > p {
  background: white;
  border-radius: 15px;
  color: var(--COLOR_main);
  font: normal 15px quicksand;
  margin: 0 40px;
  padding: 0 5px;
  position: relative;
  width: max-content;
}
div.inputDatabox.notice > p {
  color: #E74C3C;
}

div.inputDatabox > span {
  color: #E74C3C;
  display: block;
  font: bold 12px quicksand;
  padding: 3px 40px;
  width: 100%;
}

div.inputDatabox input, div.inputDatabox select, div.inputDatabox label, div.inputDatabox textarea {
  background: white;
  border: 2px solid var(--COLOR_alt);
  border-radius: 20px;
  color: var(--COLOR_main);
  display: block;
  font: bold 14px montserrat;
  height: 50px;
  margin: -10px auto 0;
  padding: 0 10px;
  outline: none;
  resize: none;
  width: 85%;
}

div.inputDatabox input[type="file"] {
  display: none;
}
div.inputDatabox label {
  align-items: center;
  cursor: pointer;
  display: flex;
  justify-content: center;
  height: auto;
  text-align: center;
  padding: 15px 10px 10px;
}

div.inputDatabox input:focus, div.inputDatabox select:focus {
  border-color: var(--COLOR_main);
}
div.inputDatabox.notice input, div.inputDatabox.notice select, div.inputDatabox.notice label {
  border-color: #f75f4e;
}
div.inputDatabox.notice input:focus, div.inputDatabox.notice select:focus {
  border-color: #bb3d2f;
}

/*<><><><><><><><><><>*/

.legal {
  align-items: center;
  display: flex;
  color: var(--COLOR_main);
  cursor: pointer;
  font: bold 12px montserrat;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  padding-top: 10px;
  width: 85%;
}

.legal > input[type=checkbox] {
  margin: 10px 0;
  transform: scale(1.7);
}

.legal > span {
  color: #E74C3C;
  display: block;
  margin-bottom: 10px;
}
