body {
  height: 100vh;
  font-family: "Montserrat", Verdana, Geneva, sans-serif;
  margin: 0;
}
body .center {
  text-align: center;
}
body header nav {
  display: inline-flex;
  align-items: center;
  justify-content: space-evenly;
  justify-items: center;
  width: 100%;
}
body header nav button, body header nav .btn {
  border-radius: 0.6rem;
  padding: 0.6rem;
  font-size: 0.8rem;
}
body header nav .btn {
  text-decoration: none;
  border: 2px solid;
  color: unset;
}
body header nav .justify-start {
  text-align: left;
  width: 30vw;
}
body header nav .center {
  text-align: center;
  width: 30vw;
}
body header nav .justify-end {
  text-align: right;
  width: 30vw;
}
body header button, body header a {
  font-weight: 500;
}
body header h1 {
  font-family: "Carter One", Century Gothic, CenturyGothic, AppleGothic, sans-serif;
  font-size: 4rem;
  text-align: center;
}
body header h2 {
  text-align: center;
}
body header .subheading {
  font-family: Century Gothic, CenturyGothic, AppleGothic, sans-serif;
  font-size: 1.4rem;
  text-align: center;
}
body header .small {
  font-size: 0.8rem;
  text-align: center;
}
body main .choice a {
  text-decoration: none;
  padding: 1rem;
  border: 1px solid;
  border-radius: 1.1rem;
}
body main #form-container form {
  max-width: 460px;
  margin: auto;
}
body main #form-container form *,
body main #form-container form *::before,
body main #form-container form *::after {
  box-sizing: border-box;
}
body main #form-container form button {
  text-decoration: none;
  padding: 1rem;
  border: 2px solid;
  border-radius: 1.1rem;
  font-weight: 600;
}
body main #form-container form label {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 400;
  opacity: 0.85;
}
body main #form-container form ::placeholder {
  opacity: 0.85;
}
body main #form-container form select + label {
  position: relative;
  top: -39px;
  right: -42px;
  z-index: 2;
  margin-bottom: 0;
  font-size: 1rem;
}
body main #form-container form input {
  height: 3rem;
  width: 20rem;
  max-width: 100vw;
  padding: 10px 0 10px 10px;
  font-size: 16px;
  border: none;
  border-bottom: solid 1px rgba(0, 0, 0, 0.1);
  background: whitesmoke;
  transition: all 0.3s linear;
  font-weight: 400;
}
body main #form-container form input:focus {
  border-bottom: solid 6px;
  outline: 0;
  box-shadow: 0 2px 6px -8px rgba(0, 0, 0, 0.45);
}
body main #form-container form input .form-error {
  background-color: #E26D5A;
}
body main #form-container form input .form-error::placeholder {
  color: ghostwhite;
  opacity: 1;
  font-weight: 700;
}
body main #form-container form input:not(:placeholder-shown).form-error + label {
  color: whitesmoke;
  opacity: 1;
  font-weight: 700;
}
body main #form-container form .floating-label {
  position: relative;
  margin-bottom: 10px;
}
body main #form-container form .floating-label label {
  position: absolute;
  top: calc(50% - 7px);
  left: 15vw;
  opacity: 0;
  transition: all 0.3s ease;
}
@media (min-width: 480px) {
  body main #form-container form .floating-label label {
    left: 80px;
  }
}
body main #form-container form .floating-label input:not(:placeholder-shown) {
  padding-top: 28px;
  padding-bottom: 12px;
}
body main #form-container form .floating-label input:not(:placeholder-shown) + label {
  transform: translateY(-14px);
  opacity: 0.7;
}
body main #form-container form .floating-label input:not(:placeholder-shown).form-error + label {
  color: whitesmoke;
  opacity: 1;
  font-weight: 700;
}
body main .text-center {
  text-align: center;
}
body .hide {
  display: none;
}

/*# sourceMappingURL=main.css.map */
