* {
  box-sizing: content-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  line-height: 24px;
  font-size: 16px;
}

.main-wrapper {
  max-height: 100vh;
}
.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 2em;
}
.form {
  padding: 3em;
  display: grid;
  grid-template-rows: min-content 1fr;
  justify-content: space-around;
  background: #fff;
  box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  margin: 0 auto;
  max-width: 900px;
  margin-top: -4em;
  position: relative;
  z-index: 9999;
  row-gap: 1em;
}

.info {
  display: flex;
  column-gap: 1em;
  border-radius: 4px;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  padding: 1em;
  background: #eee;
  border: 1px solid #ccc;
}

.warning,
.successful {
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  padding: 1em;
}

.warning {
  background: #ffebcc;
  border: 1px solid #ffad33;
  color: #ffad33;
}

.successful {
  background: #d6f5d6;
  border: 1px solid #29a329;
  color: #29a329;
}

.info h2 {
  font-size: 1.25em;
  font-weight: 600;
}

.btn {
  background: #003876;
  color: #fff;
  padding: 14px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background 0.5s ease;
}

.btn:hover {
  background: #2f80ed;
}

a.btn {
  text-decoration: none;
}

.map-container {
  min-height: 360px;
}

.disclaimer {
  display: none;
  opacity: 0;
}

@media screen and (max-width: 580px) {
  .form {
    padding: 1em;
  }
  .labelbtn {
    display: none;
  }

  .form {
    margin-top: -1em;
  }
}
