/* CSS Document */
html, body {
  margin: 0;
  height: 100%;
}
.wrapper {
  height: 100%;
  position: relative;
  background: url("../img/star-wars-fail2.jpg");
  background-size: cover;
}
.overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(255,255,255,0.25);
}
.content {
  position: absolute;
  left: 0;
  width: 100%;
}
.content .card {
  box-shadow: 0 0 10px black;
}

.login-card {
  background-color: initial;
  opacity: 0.75;
}

.loginbanner {
  width: 100%;
}
.loginbanner img {
  opacity: 0.75;
  display: block;
  width: 75%;
  margin: 0 auto;
}
 