.alterState[data-state=hidden] {
  display: none;
}

.panel {
  padding: 1rem 2rem;
  border: 5px double var(--darkGrey);
  border-radius: 8px;
  background: var(--surface_1);
}
@media screen and (max-width: 767px) {
  .panel {
    padding: 1rem;
  }
}

.searchable[data-search=hidden] {
  display: none;
}

.mt-S {
  margin-top: 0.5rem;
}

.mt-M {
  margin-top: 1rem;
}

.mt-L {
  margin-top: 2rem;
}

.mt-A {
  margin-top: auto;
}

.ml-S {
  margin-left: 0.5rem;
}

.ml-M {
  margin-left: 1rem;
}

.ml-L {
  margin-left: 2rem;
}

.ml-A {
  margin-left: auto;
}

.mr-S {
  margin-right: 0.5rem;
}

.mr-M {
  margin-right: 1rem;
}

.mr-L {
  margin-right: 2rem;
}

.mr-A {
  margin-right: auto;
}

.mb-S {
  margin-bottom: 0.5rem;
}

.mb-M {
  margin-bottom: 1rem;
}

.mb-L {
  margin-bottom: 2rem;
}

.mb-A {
  margin-bottom: auto;
}

.p-M {
  padding: 1rem;
}

.p-L {
  padding: 2rem;
}

.pb-L {
  padding-bottom: 2rem;
}

.pb-XL {
  padding-bottom: 5rem;
}

.ta-C {
  text-align: center;
}

.ta-R {
  text-align: right;
}

.warning {
  color: var(--yellow);
  margin-top: 1rem;
  text-align: center;
}
.warning[data-state=hidden] {
  display: none;
}

.placeholder {
  color: var(--red);
  font-style: italic;
}
.placeholder[data-state=hidden] {
  display: none;
}

:root {
  --borderWidth: 3px;
}

main {
  padding: calc(var(--borderWidth) * 2);
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  justify-content: center;
}

form {
  --gradient: linear-gradient(45deg, var(--gold1), var(--gold2));
  max-width: 500px;
  width: 100%;
  padding: 2rem 1rem 2rem;
  display: flex;
  flex-direction: column;
  background: #080c16;
  background: var(--deep-blue-800);
  border: none;
  position: relative;
}
form::before {
  content: "";
  position: absolute;
  top: calc(var(--borderWidth) * -1);
  left: calc(var(--borderWidth) * -1);
  width: calc(100% + var(--borderWidth) * 2);
  height: calc(100% + var(--borderWidth) * 2);
  background: var(--gradient);
  z-index: -1;
  border-radius: inherit;
}
form img {
  max-width: 100%;
  width: 150px;
}
form .formField {
  width: 90%;
  gap: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
form .formField input:not(#showPassword) {
  width: 100%;
}
form .formField + .checkboxField {
  flex-direction: row;
}
form .formField input:checked + label[for=showPassword]::after {
  background: var(--gradient);
}
form button:not(.secondaryLink) {
  width: 70%;
  padding: 1rem;
  background: var(--gradient);
  color: var(--surface_1);
  font-weight: bold;
  font-size: 1rem;
  border: none;
}
form button:not(.secondaryLink):hover, form button:not(.secondaryLink):focus, form button:not(.secondaryLink):focus-visible {
  color: black;
}
@media screen and (min-width: 1024px) {
  form {
    justify-content: center;
  }
}/*# sourceMappingURL=auth.css.map */