div, * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body, html {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'JohnsonText', 'Karbon', 'Arial', sans-serif;
  font-size: 24px;
  line-height: 1.2;
  color: #646567;
}

.banner {
  position: relative;
  width: 100%;
  text-align: center;
  line-height: 1;
  width: 100%;
  height: 220px;
  font-family: 'JohnsonDisplay', 'Karbon', 'Arial', sans-serif;
  /** background: linear-gradient(45deg, #00b2ee, #0058a9); **/
  background: rgb(235, 23, 0);
}
.banner .banner__text {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  color: white;
  transform: translate(-50%, -50%);
  font-size: 50px;
}

.wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 20px 0;
}
.wrapper .content {
  width: 1000px;
  padding: 20px 0;
}

.container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.instructions {
  text-align: center;
}

.msg {
  font-size: 20px;
  padding-top: 10px;
}

.form {
  padding: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.form .date-time {
  display: flex;
}
.form .date-time > div {
  padding: 24px;
}
.form .date-time input, .form .date-time select {
  font-size: 20px;
  color: #646567;
  padding: 2px 4px;
  padding-top: 6px;
  width: 200px;
  font-family: 'JohnsonText', Karbon, 'Arial', sans-serif;
}

.button {
  margin-top: 20px;
  padding: 5px 15px;
  line-height: 1;
  font-size: 32px;
  text-transform: uppercase;
  border-radius: 30px;
  color: white;
  /** background: linear-gradient(45deg, #00b2ee, #0058a9); **/
  background: rgb(235, 23, 0);
  cursor: pointer;
  user-select: none;
  box-shadow: 2px 2px 4px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
}
.button:hover {
  opacity: 0.75;
}
.button:active {
  opacity: 1;
}

.mandatories {
  width: 1000px;
  font-size: 14px;
  padding: 20px 0;
  text-align: center;
}
.mandatories img {
  width: 100%;
  margin: 20px;
  max-width: 200px;
}

@media screen and (max-width: 1000px) {
  .wrapper .content {
    width: 100%;
    padding: 20px;
  }

  .mandatories {
    width: 100%;
    padding: 20px;
  }

  .banner {
    height: 320px;
  }

  .form .date-time {
    display: flex;
    flex-direction: column;
  }

  .form .date-time > div {
    padding: 12px 24px;
  }

  .form .date-time input, .form .date-time select {
    width: 400px;
  }

  .button {
    margin-top: 32px;
  }
}
