.auth-login {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  padding: var(--header-height) 0;
  min-height: 100vh;
}
.auth-login .container {
  position: relative;
  width: 100%;
  z-index: 1;
}
.auth-login__title {
  line-height: 1.25;
  margin: 0;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  .auth-login__title {
    font-size: 2rem;
  }
}
@media (min-width: 1200px) {
  .auth-login__title {
    font-size: 2.25rem;
  }
}
.auth-login__title h1,
.auth-login__title h2,
.auth-login__title h3,
.auth-login__title h4,
.auth-login__title h5,
.auth-login__title h6,
.auth-login__title p,
.auth-login__title a {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  font-family: inherit;
  color: inherit;
}
.auth-login__form {
  border: 1px solid var(--c-gray-medium);
  padding: 2rem 3rem;
  background-color: var(--c-gray-lighter);
  border-radius: 0.25rem;
}
.auth-login__input {
  width: 75%;
  padding: 0.5rem 0.75rem;
}
.auth-login__input[type=checkbox] {
  width: 1rem;
  height: 1rem;
  margin-right: 1rem;
}
.auth-login__input-group {
  display: flex;
  justify-content: space-between;
  margin: 0 0 0.5rem;
}
.auth-login__input-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.auth-login__input-label--checkbox {
  justify-content: flex-start;
  align-items: flex-start;
}
.auth-login__input-text {
  padding-right: 1rem;
}
.auth-login__links {
  text-align: center;
  margin: 2rem 0 0;
}
.auth-login__link {
  color: var(--c-gray-darker);
}
.auth-login__submit {
  all: unset;
  white-space: nowrap;
  margin-top: 1rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--c-primary);
  background: var(--c-primary);
  color: var(--c-white);
  cursor: pointer;
  transition: 0.3s ease;
}
.auth-login__submit:hover {
  transform: scale(1.1);
}

.background-fader__slide {
  position: absolute;
  inset: 0;
  background-image: none;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.01;
  transition: opacity 1s ease;
  transition-delay: 1s;
  z-index: 0;
}
.background-fader__slide--active {
  opacity: 1;
  transition: opacity 1s ease;
  transition-delay: 0.3s;
  z-index: 1;
}
