@font-face {
  font-family: "Gilroy";
  src: url("gilroy-medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: url("gilroy-semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: url("gilroy-black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
html {
  height: 100%;
  width: 100%;
}

body {
  background-color: #1a1a1a;
  color: #fff;
  display: flex;
  flex-direction: column;
  font-family: "Gilroy", "Trebuchet MS", sans-serif;
  font-weight: 500;
  min-height: 100%;
  position: relative;
  width: 100%;
}

.body-wrapper {
  align-items: center;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 1.5rem;
  height: 100%;
  justify-content: center;
  margin: 0;
  padding-top: 1.5rem;
}
@media screen and (min-width: 48em) {
  .body-wrapper {
    margin: 0 auto;
    max-width: 50rem;
  }
}
@media screen and (min-width: 62em) {
  .body-wrapper {
    gap: 2rem;
  }
}

.logo {
  display: block;
  max-width: 6.875rem;
  width: 100%;
}

.form-padding {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0 1.5rem;
}
@media screen and (min-width: 48em) {
  .form-padding {
    padding: 1.5rem;
  }
}

form {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 1rem;
  justify-content: space-between;
  width: 100%;
}
@media screen and (min-width: 48em) {
  form {
    border-color: #fff;
    border-radius: 1rem;
    border-style: solid;
    border-width: 0.125rem;
    flex-grow: 0;
    gap: 0;
  }
}
form fieldset {
  border: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0;
}
form label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.0375rem;
  text-transform: uppercase;
}
form input {
  background: #fff;
  border: none;
  border-color: transparent;
  border-style: solid;
  border-width: 0.125rem;
  border-radius: 0.5rem;
  color: #1a1a1a;
  display: block;
  font-size: 1rem;
  font-weight: 900;
  padding: 0.75rem;
  outline: none;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
form input:focus {
  border-color: #0e9940;
  box-shadow: 0 0 0 0.25rem #12C853;
}
form button {
  align-items: center;
  appearance: none;
  -webkit-appearance: none;
  border: none;
  border-radius: 0;
  background: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  gap: 0.25rem;
  justify-content: center;
  transition: 0.2s;
}
form button:hover span:last-of-type, form button:focus span:last-of-type {
  transform: translateX(-38px);
}
form button:hover svg, form button:focus svg {
  background-color: #12C853;
  transform: translateX(150px);
}
form button span {
  background-color: #1a1a1a;
  border-color: #fff;
  border-radius: 4rem;
  border-style: solid;
  border-width: 0.125rem;
  display: block;
  flex-grow: 1;
  font-size: 1.125rem;
  padding: 0.35rem 1rem;
  text-transform: uppercase;
  transition: 0.2s;
}
form button svg {
  background-color: #1a1a1a;
  border-color: #fff;
  border-radius: 4rem;
  border-style: solid;
  border-width: 0.125rem;
  display: flex;
  height: 19px;
  padding: 6px;
  transition: 0.2s;
  width: 19px;
}
form button svg path {
  fill: currentColor;
}

.label-with-observation {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}
.label-with-observation p {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.0375rem;
  margin: 0;
  text-transform: uppercase;
}

.end-graphic {
  display: block;
  margin: 0;
}

.loading-cover {
  align-items: center;
  background-color: #1a1a1a;
  color: #fff;
  display: flex;
  justify-content: center;
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  visibility: hidden;
  width: 100%;
}

.loading-animation-container {
  height: 100px;
  margin: 0 auto;
  position: relative;
  width: 100px;
}
.loading-animation-container svg {
  display: block;
  position: absolute;
  height: 100%;
  visibility: hidden;
  width: 100%;
}
.loading-animation-container svg.logo-stem polygon {
  fill: currentColor;
}

.logo-circle {
  background-color: #fff;
  border-radius: 35px;
  height: 35px;
  left: 32.5px;
  position: absolute;
  top: 32.5px;
  transform: scale(0.5);
  visibility: hidden;
  width: 35px;
}

.logo-stem-1 {
  transform: scaleY(0);
}

.bg {
  display: none;
  mix-blend-mode: lighten;
  overflow: hidden;
  position: absolute;
  user-select: none;
  z-index: -1;
}
@media screen and (min-width: 48em) {
  .bg {
    display: block;
  }
}
.bg img {
  display: block;
  max-width: 10rem;
  width: 100%;
}
@media screen and (min-width: 62em) {
  .bg img {
    max-width: 40rem;
  }
}

.bg-star {
  right: 0;
  top: 0;
}

.bg-circle {
  bottom: 0;
  left: 0;
}

.modal {
  display: none;
  position: relative;
  z-index: 1000;
}
.modal.is-open {
  display: block;
}

.modal-overlay {
  align-items: center;
  background: rgba(0, 0, 0, 0.8);
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  padding: 1rem;
  position: fixed;
  right: 0;
  top: 0;
  visibility: hidden;
}
@media screen and (min-width: 48em) {
  .modal-overlay {
    padding: 0;
  }
}

.modal-container {
  background-color: #fff;
  border-radius: 1rem;
  box-sizing: border-box;
  color: #1a1a1a;
  max-height: 100vh;
  max-width: 600px;
  overflow-y: auto;
  padding: 0.5rem;
}
@media (min-width: 640px) {
  .modal-container {
    min-width: 500px;
  }
}
.modal-container h1 {
  font-size: 1.75rem;
  font-weight: 900;
  margin: 0;
  text-transform: uppercase;
  z-index: 2;
}
@media screen and (min-width: 48em) {
  .modal-container h1 {
    font-size: 2rem;
  }
}
.modal-container h1 br {
  display: none;
}
@media screen and (min-width: 48em) {
  .modal-container h1 br {
    display: block;
  }
}
.modal-container h2 {
  font-size: 1.25rem;
  font-weight: 900;
  margin: 0;
  text-transform: uppercase;
}
.modal-container p {
  font-size: 0.875rem;
  line-height: 1.3em;
  margin: 0;
  z-index: 2;
}
@media screen and (min-width: 48em) {
  .modal-container p {
    font-size: 1rem;
  }
}
.modal-container p br {
  display: none;
}
@media screen and (min-width: 48em) {
  .modal-container p br {
    display: block;
  }
}
.modal-container ul {
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin: 0 0 -1rem 0;
  padding: 0;
}
@media screen and (min-width: 48em) {
  .modal-container ul {
    display: flex;
    gap: 0.25rem;
    margin-bottom: -1.25rem;
  }
}
.modal-container ul li {
  align-items: center;
  border-color: #1a1a1a;
  border-radius: 0.5rem 0.5rem 0 0;
  border-bottom: none;
  border-style: solid;
  border-width: 0.125rem;
  color: #1a1a1a;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  list-style: none;
  padding: 0.25rem;
}
@media screen and (min-width: 48em) {
  .modal-container ul li {
    flex-direction: row;
    flex-grow: 1;
    margin-left: unset;
    padding: 0.5rem 0.25rem;
  }
}
.modal-container ul li:nth-child(2) {
  margin-left: -0.125rem;
}
@media screen and (min-width: 48em) {
  .modal-container ul li:nth-child(2) {
    margin-left: unset;
  }
}
.modal-container ul li:nth-child(3) {
  margin-left: -0.125rem;
}
@media screen and (min-width: 48em) {
  .modal-container ul li:nth-child(3) {
    margin-left: unset;
  }
}
.modal-container ul li.current-selection {
  background-color: #1a1a1a;
  color: #fff;
}
.modal-container ul li img {
  display: block;
  height: 1.5rem;
  width: 1.5rem;
}
@media screen and (min-width: 48em) {
  .modal-container ul li img {
    height: 1.25rem;
    width: 1.25rem;
  }
}
.modal-container ul li span {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: -0.03rem;
  text-align: center;
}
@media screen and (min-width: 48em) {
  .modal-container ul li span {
    text-align: left;
  }
}
.modal-container .video-js {
  background-color: #1a1a1a;
  border-color: #1a1a1a;
  border-radius: 0 0 0.5rem 0.5rem;
  border-style: solid;
  border-width: 0.125rem;
}
.modal-container .video-js video {
  border-radius: 0 0 0.5rem 0.5rem;
}

.modal-container-inner {
  border-color: #12C853;
  border-width: 0.325rem;
  border-style: dashed;
  border-radius: 1rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
  position: relative;
}
@media screen and (min-width: 48em) {
  .modal-container-inner {
    gap: 1rem;
    padding: 2rem;
  }
}

.stamp {
  max-width: 8rem;
  position: absolute;
  right: -0.25rem;
  top: -0.5rem;
  width: 100%;
  z-index: 1;
}
@media screen and (min-width: 48em) {
  .stamp {
    display: block;
    max-width: 12.5rem;
    right: 0.5rem;
    top: 0.5rem;
  }
}

.generic-error {
  align-items: center;
  background-color: #f8d7da;
  border-color: #f1aeb5;
  border-radius: 0.5rem;
  border-style: solid;
  border-width: 1px;
  color: #58151c;
  display: flex;
  justify-content: space-between;
  padding: 0.25rem 0.5rem;
}
.generic-error p {
  font-size: 0.875rem;
  margin: 0;
}
.generic-error svg {
  height: 1.25rem;
  width: 1.25rem;
}
