@import 'fa.all.min.css';
@font-face {
  font-family: "Montserrat";
  src: url("../webfonts/Montserrat/static/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
html, body {
  margin: 0;
  padding: 0;
  min-width: 100vw;
  min-height: 100vh;
  background: url("../img/computer-1873831.png") center center no-repeat;
  background-size: cover;
  font-family: Montserrat, Arial;
  font-size: 14px;
}

* {
  box-sizing: border-box;
}

.body-overlay {
  width: 100vw;
  height: 100vh;
  backdrop-filter: blur(10px);
  padding: 50px;
}

.logo {
  width: 100%;
  height: 350px;
  background: url("../img/logo.svg") center center no-repeat;
  background-size: contain;
  margin-bottom: 50px;
  -webkit-filter: drop-shadow(0px 0px 3px black);
  filter: drop-shadow(0px 0px 3px black);
  animation-name: logo-hover;
  animation-duration: 3000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes logo-hover {
  0% {
    filter: drop-shadow(0px 0px 3px black);
  }
  50% {
    filter: drop-shadow(0px 0px 3px lime);
  }
  75% {
    filter: drop-shadow(0px 0px 3px white);
  }
  100% {
    filter: drop-shadow(0px 0px 3px black);
  }
}
#app-container {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-box-direction: normal;
  -moz-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  color: #fff;
}

.login-wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-box-direction: normal;
  -moz-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 20px;
  background-color: #f2f2f2;
  color: #000;
  border-radius: 3px;
  max-width: 800px;
}
.login-wrapper .fa-key {
  font-size: 40px;
  display: block;
  margin-bottom: 10px;
  color: #f00;
}
.login-wrapper input, .login-wrapper .button {
  width: 300px;
  padding: 10px;
  margin: 10px 0;
  line-height: 20px;
  border: 1px solid rgba(0, 0, 0, 0.4);
  border-radius: 3px;
}
.login-wrapper .button {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-box-direction: normal;
  -moz-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
  background-color: #00f700;
  cursor: pointer;
  -webkit-filter: drop-shadow(0px 0px 1px rgba(0, 0, 0, 0.6));
  filter: drop-shadow(0px 0px 1px rgba(0, 0, 0, 0.6));
  transition: all 200ms;
}
.login-wrapper .button i {
  margin-right: 10px;
}
.login-wrapper .button:hover {
  -webkit-filter: drop-shadow(0px 0px 0px lime);
  filter: drop-shadow(0px 0px 0px lime);
}

.impressum {
  position: absolute;
  left: 0;
  bottom: 0;
  width: calc(100% - 20px);
  opacity: 0.4;
  color: #fff;
  font-size: 10px;
  text-align: center;
  margin: 10px;
}

/*# sourceMappingURL=style.css.map */
