/* static/css/login.css */

.login-page {
  position: relative;
  min-height: 100vh;
}

/* Bakgrundsbild */
.login-page::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("/static/img/live_thl-bg.png") center / cover no-repeat;
  opacity: 0.75;
  z-index: -2;
  pointer-events: none;
}

/* Vit overlay för läsbarhet */
.login-page::after {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.50);
  z-index: -1;
  pointer-events: none;
}