.flex-container {
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
body {
  background: url('/images/login_back.jpg');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}
.visibility-hidden {
  visibility: hidden;
}
#password {
  transition: all 0.5s;
}
#password.invalid {
  border-color: red;
  background-color: #ffb6b6;
}
#username,
#password {
  color: black;
}
.login-container,
.forgot-container,
.reset-container,
.error-container {
  padding: 20px;
  background-color: #f7f7f7;
  border-radius: 10px;
  text-align: center;
  opacity: 1;
  transform-style: preserve-3d;
  /* Drop shadow */
  -webkit-box-shadow: 4px 4px 15px -1px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 4px 4px 15px -1px rgba(0, 0, 0, 0.75);
  box-shadow: 4px 4px 15px -1px rgba(0, 0, 0, 0.75);
  min-width: 100%;
}
.login-container form > .input-group,
.forgot-container form > .input-group,
.reset-container form > .input-group,
.error-container form > .input-group,
.login-container .login-form > button,
.forgot-container .login-form > button,
.reset-container .login-form > button,
.error-container .login-form > button,
.login-container h1,
.forgot-container h1,
.reset-container h1,
.error-container h1,
.login-container p,
.forgot-container p,
.reset-container p,
.error-container p {
  margin-bottom: 20px !important;
}
.flipdiv .back {
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
  position: absolute;
  top: 0;
  width: 100%;
}
.flipdiv .front,
.flipdiv .back {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: transform 1s;
  transition: transform 1s;
}
.flipdiv.showback .front {
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
}
.flipdiv.showback .back {
  -webkit-transform: rotateY(0);
  transform: rotateY(0);
}
.fadeInAnimation {
  -webkit-animation: fadein 1s;
  -moz-animation: fadein 1s;
  -ms-animation: fadein 1s;
  -o-animation: fadein 1s;
  animation: fadein 1s;
}
.fadeOutAnimation {
  -webkit-animation: fadeout 1s;
  -moz-animation: fadeout 1s;
  -ms-animation: fadeout 1s;
  -o-animation: fadeout 1s;
  animation: fadeout 1s;
}
.shakeAnimation {
  animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  transform: translate3d(0, 0, 0);
}
.full-width {
  width: 100%;
}
.one-sixth {
  width: 16.6%;
}
.margin-right {
  margin-right: 1em;
}
.margin-left {
  margin-left: 1em;
}
.margin-top {
  margin-top: 1em;
}
.margin-bottom {
  margin-bottom: 1em;
}
.scrolltable-fix table {
  margin-bottom: 0px;
}
.remove_margin_padding_border {
  margin: 0;
  padding: 0;
  border: 0;
}
.panel-body-fix {
  margin-left: -25px;
  margin-right: -25px;
}
.nav-md .container.body .right_col {
  margin-bottom: -20px;
}
/* ----------------------------------Fade In----------------------------------  */
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-moz-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-ms-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-o-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* ----------------------------------Fade Out----------------------------------  */
@keyframes fadeout {
  from {
    opacity: 1;
  }
  to {
    opactiy: 0;
  }
}
@-moz-keyframes fadeout {
  from {
    opacity: 1;
  }
  to {
    opactiy: 0;
  }
}
@-webkit-keyframes fadeout {
  from {
    opacity: 1;
  }
  to {
    opactiy: 0;
  }
}
@-ms-keyframes fadeout {
  from {
    opacity: 1;
  }
  to {
    opactiy: 0;
  }
}
@-o-keyframes fadeout {
  from {
    opacity: 1;
  }
  to {
    opactiy: 0;
  }
}
@keyframes shake {
  10%,
  90% {
    transform: translate3d(-1px, 0, 0);
  }
  20%,
  80% {
    transform: translate3d(2px, 0, 0);
  }
  30%,
  50%,
  70% {
    transform: translate3d(-4px, 0, 0);
  }
  40%,
  60% {
    transform: translate3d(4px, 0, 0);
  }
}
/*# sourceMappingURL=/css/loginmain.css.map*/
