.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999; /* Ensure it overlays on top */
}
.overlay-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7); /* Black color with 50% opacity */
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px); /* Apply blur effect */
}
.login_dropdown {
  color: rgba(0, 0, 0, 0.3);
}

