body.auth-doodle-page {
  position: relative;
  overflow-x: hidden;
  isolation: isolate;
  background: #4f99cc;
  background-attachment: fixed;
}

body.auth-doodle-page::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url('../img/auth-doodle.svg');
  background-repeat: repeat;
  background-size: 500px 500px;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}

body.auth-doodle-page::after {
  content: '';
  position: fixed;
  inset: 0;
  background: none;
  pointer-events: none;
  z-index: 0;
}

body.auth-doodle-page .card {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 30px 90px rgba(7, 43, 52, 0.22), 0 14px 34px rgba(7, 43, 52, 0.12);
}

body.auth-doodle-page .logo h1 {
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.55), 0 14px 36px rgba(10, 62, 72, 0.14);
}

@media (max-width: 640px) {
  body.auth-doodle-page::before {
    background-size: 420px 420px;
  }
}