@font-face {
  font-family: Sofia;
  src: url("font.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: Sofia;
  src: url("bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}
.auth-view * {
  box-sizing: border-box;
}
.auth-view {
  margin: 0;
  min-height: 100dvh;
  padding: 48px 20px;
  background: #f3f4f8;
  color: #202438;
  font:
    16px/1.5 Sofia,
    Arial,
    sans-serif;
  display: grid;
  place-items: center;
}
.auth-view .auth-card {
  width: 100%;
  max-width: 470px;
  padding: 34px 38px;
  background: #fff;
  border: 1px solid #dfe2eb;
  border-radius: 20px;
  box-shadow: 0 16px 55px #2024380d;
}
.auth-view .back {
  font-size: 14px;
  color: #535c71;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 28px;
}
.auth-view .prototype-label {
  display: inline-block;
  color: #394578;
  background: #e9edff;
  border: 1px solid #cfd7fc;
  border-radius: 5px;
  padding: 4px 9px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
}
.auth-view h1 {
  font-size: 32px;
  line-height: 1.2;
  margin: 15px 0;
}
.auth-view .notice {
  font-size: 14px;
  line-height: 1.6;
  color: #596176;
  margin: 0 0 24px;
}
.auth-view .auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid #e1e4ed;
  margin-bottom: 23px;
}
.auth-view .auth-tabs a {
  text-align: center;
  padding: 12px 5px;
  text-decoration: none;
  color: #677085;
  font-weight: 700;
}
.auth-view .auth-tabs a[aria-current] {
  border-bottom: 3px solid #5545a4;
  color: #5545a4;
}
.auth-view label {
  display: block;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 6px;
}
.auth-view input {
  display: block;
  width: 100%;
  height: 49px;
  padding: 11px 13px;
  border: 1px solid #bfc6d5;
  border-radius: 8px;
  font: inherit;
  font-size: 16px;
  margin-bottom: 18px;
  color: #202438;
  background: #fff;
}
.auth-view input[aria-invalid="true"] {
  border-color: #b2253d;
}
.auth-view input:focus-visible,
.auth-view button:focus-visible,
.auth-view a:focus-visible {
  outline: 3px solid #b4a8ec;
  outline-offset: 3px;
}
.auth-view button {
  display: block;
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  background: #5545a4;
  color: #fff;
  font:
    700 16px Sofia,
    Arial,
    sans-serif;
  cursor: pointer;
  padding: 12px;
}
.auth-view button:disabled {
  opacity: 0.5;
  cursor: default;
}
.auth-view [id$="-formStatus"] {
  font-size: 14px;
  line-height: 1.5;
  color: #b2253d;
  margin: 0 0 16px;
}
.auth-view [id$="-formStatus"]:empty {
  display: none;
}
.auth-view [id$="-formStatus"].success {
  background: #e9f5ee;
  color: #235d3d;
  border-radius: 7px;
  padding: 12px;
}
.auth-view .switch {
  text-align: center;
  font-size: 14px;
  margin: 22px 0 0;
}
.auth-view .switch a {
  color: #5545a4;
  font-weight: 700;
  text-underline-offset: 3px;
}
@media (max-width: 500px) {
  .auth-view {
    padding: 20px 14px;
    align-items: start;
  }
  .auth-view .auth-card {
    padding: 26px 23px;
    border-radius: 15px;
  }
  .auth-view .back {
    margin-bottom: 22px;
  }
  .auth-view h1 {
    font-size: 29px;
  }
}
.auth-view .prototype-label {
  display: block;
  width: fit-content;
}

[hidden] {
  display: none !important;
}
.auth-view h1 {
  font-family: Sofia, Arial, sans-serif;
  color: #202438;
}

/* Route headings receive focus for navigation, but are not interactive controls. */
.auth-view h1[tabindex="-1"]:focus {
  outline: none;
}
