#sidebar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #17a2b8 80%, #47cde2 100%);
  z-index: 0;
}

body.auth-login-page {
  min-height: 100vh;
  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(255, 255, 255, 0.35),
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(255, 255, 255, 0.25),
      transparent 45%
    ),
    linear-gradient(180deg, #17a2b8, #47cde2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
