html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

.bg-login {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  z-index: 1;
  display: flex;
  align-items: center;
}

.bg-login::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: url("/assets/images/bg/login-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(8px);
  transform: scale(1.05);
  z-index: 1;
}

.bg-login::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: radial-gradient(#ffffff 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: 0.3;
  z-index: 2;
}

.bg-login > * {
  position: relative;
  z-index: 3;
}
