/* Login page premium style */
.login-body{margin:0;min-height:100vh;overflow:hidden;background:#000}

.poster-bg{
  position:fixed;
  inset:0;
  background:
   url('assets/images/posters/1.jpg'),
   url('assets/images/posters/2.jpg'),
   url('assets/images/posters/3.jpg'),
   url('assets/images/posters/4.jpg');
  background-size:300px 450px;
  background-repeat:repeat;
  filter:blur(3px) brightness(.4);
  z-index:-1;
}

.login-wrapper{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
}

.login-card{
  width:100%;
  max-width:360px;
  background:rgba(0,0,0,.75);
  border-radius:16px;
  padding:24px;
  backdrop-filter:blur(10px);
  box-shadow:0 0 40px rgba(0,0,0,.7);
}

.login-card input{
  background:#111;
  border:none;
  color:#fff;
}
.login-card input:focus{background:#111;color:#fff}

@media(min-width:768px){
  .login-card{max-width:420px}
}