#sidebar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(0, 140, 255), rgb(66, 170, 254));
  z-index: 0;
}

.sidebar-header {
  background: rgb(0, 140, 255);
  backdrop-filter: blur(4px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

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, rgb(0, 140, 255), rgb(66, 170, 254));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
