.wrapper {
  position: relative;
  width: 100vw;
  min-height: calc(90vh - 100px);
  margin: 2em 0;
  margin-top: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#form-container {
  background: white;
  border-radius: 7px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  padding: 20px;
  max-width: 500px;
  width: 100%;
  padding-bottom: 35px;
}

.captcha {
  margin-top: 20px;
  width: -webkit-fill-available;
  width: -moz-available;
  display: flex;
  justify-content: center;
}

.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
}

.form-header {
  margin-bottom: 20px;
}
.form-header h2 {
  color: #333;
  font-weight: 600;
}

.qr {
  text-align: center;
  margin: auto;
}

.form-group {
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.form-group label {
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.8);
}
.form-group .form-field {
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  padding: 5px;
  outline: none;
  font-size: 14px;
  font-weight: 400;
  position: relative;
  width: 100%;
}
.form-group .form-field:focus {
  border: 1px solid #B8E8F5;
  box-shadow: 0 0 4px #B8E8F5;
}

input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  height: 5px;
  background: rgba(0, 0, 0, 0.3);
  outline: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}

input[type=range]:hover {
  opacity: 1;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 15px;
  height: 15px;
  background: #00204A;
  border-radius: 50%;
  cursor: pointer;
}

.select-hour {
  margin-bottom: 20px;
}

input[type=range]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: #00204A;
  cursor: pointer;
}

.error {
  color: red;
  font-size: 12px;
  font-weight: 400;
  margin-top: 5px;
}

#submit {
  background-color: #00204A;
  border: none;
  border-radius: 5px;
  color: white;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 12px;
  margin-top: 10px;
  width: -webkit-fill-available;
  width: -moz-available;
  text-decoration: none;
  text-transform: uppercase;
  margin-top: 30px;
}
#submit.margin {
  margin-top: 10px;
}

.form-footer {
  margin: 23px 0;
  margin-bottom: 0px;
  text-align: center;
  font-size: 14px;
  color: black;
}
.form-footer p {
  margin-bottom: 10px;
}
.form-footer a {
  color: #00BBF0;
}

.dropdown-label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.8);
}

select {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  padding: 5px;
  margin-top: 5px;
}

@media screen and (max-width: 768px) {
  .row {
    grid-template-columns: 1fr;
  }
}/*# sourceMappingURL=form.css.map */