:root {
  --notebook-login-wallpaper: url("/static/img/login-wallpaper.png");
  --notebook-login-overlay: 36;
}
body.notebook-login-page {
  background-color: #152033 !important;
  background-image:
    linear-gradient(
      rgba(8, 15, 27, calc(var(--notebook-login-overlay) / 100)),
      rgba(8, 15, 27, calc(var(--notebook-login-overlay) / 100))
    ),
    var(--notebook-login-wallpaper) !important;
  background-position: center top !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-attachment: fixed !important;
}
body.notebook-login-page #app,
body.notebook-login-page .login-container,
body.notebook-login-page .auth-shell,
body.notebook-login-page .auth-page {
  min-height: 100vh;
  background: transparent !important;
}
body.notebook-login-page .auth-shell__form {
  background: rgba(255, 255, 255, 0.66) !important;
  border: 1px solid rgba(255, 255, 255, 0.82) !important;
  box-shadow: 0 24px 70px rgba(6, 13, 25, 0.28) !important;
  -webkit-backdrop-filter: blur(24px) saturate(135%);
  backdrop-filter: blur(24px) saturate(135%);
}
body.notebook-login-page .auth-shell__brand-name.auth-shell__sr-only {
  position: static !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  overflow: visible !important;
  clip: auto !important;
  white-space: nowrap !important;
}
body.notebook-login-page .auth-shell__brand-lockup .auth-shell__wide-logo {
  width: 36px !important;
  height: 36px !important;
  object-fit: contain !important;
  object-position: center !important;
}
body.notebook-login-page .auth-shell__form-brand .auth-shell__wide-logo {
  width: 48px !important;
  height: 48px !important;
  object-fit: contain !important;
  object-position: center !important;
}
body.notebook-login-page .auth-shell__brand {
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.38);
}
body.notebook-login-page .auth-shell__topbar {
  color: #fff;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}
@media (max-width: 640px) {
  body.notebook-login-page {
    background-position: 58% top !important;
    background-attachment: scroll !important;
  }
  body.notebook-login-page .auth-shell__form {
    background: rgba(255, 255, 255, 0.84) !important;
    -webkit-backdrop-filter: blur(18px) saturate(125%);
    backdrop-filter: blur(18px) saturate(125%);
  }
}
