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

body {
  background-image: url('/images/login-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Dark overlay for readability */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 0;
}

body>* {
  position: relative;
  z-index: 1;
}

/* Glass login card */
.login-card {
  /* background: rgba(255, 255, 255, 0.88); */
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 10px;
}