html {
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
body {
  width: 100vw;
  height: 100vh;
  margin: 0px;
  background: #f1f1f1;
}
.video {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.video video {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.login {
  position: absolute;
  width: 100vw;
  height: 100vh;
  z-index: 50;
  display: flex;
  justify-content: center;
  align-items: center;
}
.login .login-container {
  width: 350px;
}
.login .login-container img {
  margin-bottom: 50px;
}
/**************************
****   THEME CHANGES   ****
**************************/
.form-control {
  border: 2px solid #ddd !important;
  border-radius: 5px !important;
  padding: 7px 10px !important;
  box-shadow: none !important;
}
.form-control:focus {
  border-color: #2196F3 !important;
}
textarea {
  max-width: 100%;
  max-height: 100%;
}
/*# sourceMappingURL=login.css.map */