html,
body {
  height: 100%;
  overflow: hidden;
  width: 100%;
}

body {
  background: url('/assets/images/backgrounds/sample-bg2.jpg');
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

#login-box {
  background: #fff;
}

#login-box-poster {
  height: 100%;
}

#login-box-poster img {
  margin: 2rem;
}

#login-box-header img {
  height: 197px;
}

#login-box-footer img {
  width: 50%;
}

@media (min-width: 768px) {
  #login-box {
    height: 100%;
    padding: 4rem 2rem;
    right: 0;
    width: 410px;
    overflow: scroll;
  }
}

@media (max-width: 767px) {
  #login-box {
    border-radius: 0.25rem;
    left: 50%;
    padding: 2rem;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
  }
  #login-box-poster{
    visibility: hidden !important;
  }
}