.shield-auth {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  place-items: center;
  min-height: 100%;
  padding: 28px 20px 96px;
  background: #101010;
  color: #f2f2f2;
}
.shield-auth::before, .shield-auth::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.shield-auth::before {
  background: rgba(0, 0, 0, 0.18);
}
.shield-auth::after {
  background: linear-gradient(to top, #000000 0%, rgba(0, 0, 0, 0.94) 16%, rgba(0, 0, 0, 0.62) 38%, rgba(0, 0, 0, 0.2) 58%, transparent 76%);
}
.shield-auth__background {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: #000000;
}
.shield-auth__slide {
  position: absolute;
  inset: -44px;
  opacity: 0;
  animation: shield-auth-cover-fade 36s infinite;
  animation-delay: calc(var(--slide-index) * 4.5s);
}
.shield-auth__slide img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  filter: blur(28px) saturate(1.12);
  opacity: 0.42;
  transform: scale(1.08);
}
.shield-auth__shell {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}
.shield-auth__card {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr;
  max-width: 520px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.92);
}
.shield-auth__card--split {
  grid-template-columns: 40% 1fr;
  max-width: none;
  background: #000000;
}
.shield-auth__card--single {
  grid-template-columns: 1fr;
  max-width: 520px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.92);
}
.shield-auth__intro, .shield-auth__body {
  display: grid;
  align-content: center;
  gap: 18px;
  min-height: 520px;
  padding: 34px;
}
.shield-auth__card--single .shield-auth__body {
  min-height: auto;
  padding: 38px;
}
.shield-auth__intro {
  position: relative;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  background: #111111;
}
.shield-auth__intro::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.58));
}
.shield-auth__intro > * {
  position: relative;
  z-index: 1;
}
.shield-auth__head {
  display: grid;
  gap: 8px;
}
.shield-auth__eyebrow {
  margin: 0;
  color: #cfcfcf;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}
.shield-auth__hero-title {
  max-width: 340px;
  margin: 0;
  color: #ffffff;
  font-family: "Cal Sans", "Urbanist", sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0;
}
.shield-auth__title {
  margin: 0;
  color: #f2f2f2;
  font-family: "Cal Sans", "Urbanist", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
}
.shield-auth__lead {
  max-width: 380px;
  margin: 0;
  color: #cfcfcf;
  font-size: 15px;
  line-height: 1.4;
}
.shield-auth__text {
  margin: 0;
  color: #cfcfcf;
}
.shield-auth__form {
  display: grid;
  gap: 16px;
}
.shield-auth__field {
  display: grid;
  gap: 7px;
  font-size: 13px;
  color: #cfcfcf;
}
.shield-auth__label {
  font-size: 13px;
  color: #cfcfcf;
}
.shield-auth__input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  padding: 12px 13px;
  font-size: 15px;
  color: #f2f2f2;
  background: #111111;
}
.shield-auth__input:focus {
  outline: none;
  border-color: #00D5FF;
}
.shield-auth__check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #f2f2f2;
}
.shield-auth__checkbox {
  width: 18px;
  min-width: 18px;
  height: 18px;
}
.shield-auth__actions {
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.shield-auth__actions .btn, .shield-auth__submit {
  width: 100%;
  justify-content: center;
}
.shield-auth__links {
  margin: 0;
  text-align: center;
  font-size: 14px;
  color: #cfcfcf;
}
.shield-auth__link {
  color: #00D5FF;
  text-decoration: none;
}
.shield-auth__link:hover, .shield-auth__footer a:hover {
  text-decoration: underline;
}
.shield-auth__footer {
  margin: 0;
  text-align: center;
  color: #cfcfcf;
  font-size: 14px;
}
.shield-auth__footer a {
  color: #00D5FF;
  text-decoration: none;
}
.shield-auth__error, .shield-auth__alert {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  padding: 12px 14px;
  font-size: 14px;
}
.shield-auth__error, .shield-auth__alert.is-error {
  border-color: #d04a4a;
  background: rgba(208, 74, 74, 0.08);
  color: #d04a4a;
}
.shield-auth__alert.is-success {
  border-color: #2f8a57;
  background: rgba(47, 138, 87, 0.12);
  color: #2f8a57;
}
.shield-auth__alert-list {
  margin: 0;
  padding-left: 18px;
}
@media (max-width: 640px) {
  .shield-auth {
    padding: 18px 16px 84px;
  }
  .shield-auth__card {
    grid-template-columns: 1fr;
  }
  .shield-auth__card--split, .shield-auth__card--single {
    max-width: 100%;
  }
  .shield-auth__intro {
    min-height: 220px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }
  .shield-auth__intro, .shield-auth__body {
    padding: 20px;
    min-height: auto;
  }
  .shield-auth__card--single .shield-auth__body {
    padding: 24px 20px;
  }
  .shield-auth__hero-title {
    font-size: 32px;
  }
  .shield-auth__title {
    font-size: 28px;
  }
}

@keyframes shield-auth-cover-fade {
  0%, 100% {
    opacity: 0;
  }
  8%, 24% {
    opacity: 1;
  }
  34% {
    opacity: 0;
  }
}/*# sourceMappingURL=shield-auth-v2.css.map */