@import url(https://fonts.googleapis.com/css?family=Montserrat:400,700);
.login-page,
.register-page,
.error-page,
.identify-page {
  background-attachment: scroll, fixed;
  background-color: #666;
  background-position: top center, center center;
  background-repeat: no-repeat, no-repeat;
  background-size: auto, cover;
  color: #fff;
}
.login-background {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  background-attachment: scroll, fixed;
  background-color: #666;
  background-position: top center, center center;
  background-repeat: no-repeat, no-repeat;
  background-size: cover;
  animation: imageAnimation .8s ease-in;
}
@keyframes imageAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.login-page .content {
  position: relative;
}
.login-box {
  animation: boxAnimation 1.2s ease-in;
}
@media screen and (max-width: 450px) {
  .login-box {
    width: 100%;
  }
}
.login-box .login-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
}
.login-box .login-logo img {
  height: 90px;
}
@keyframes logoAnimation {
  0% {
    opacity: 0;
    font-size: 18px;
  }
  30% {
    opacity: 0;
    font-size: 20px;
  }
  80% {
    opacity: 1;
    font-size: 24px;
  }
  100% {
    opacity: 1;
    font-size: 28px;
  }
}
@keyframes boxAnimation {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.login-box.identify-box {
  max-width: 500px;
}
@media screen and (max-width: 640px) {
  .login-box.identify-box {
    max-width: 90%;
  }
}
.login-box-body,
.error-box-body,
.identify-box-body {
  background-color: rgba(255,255,255,0.8);
  border-radius: 5px;
  padding: 40px 40px 20px;
  color: #000;
}
@media screen and (max-width: 640px) {
  .login-box-body,
  .error-box-body,
  .identify-box-body {
    width: 100%;
    margin: auto;
  }
}
@media screen and (max-width: 450px) {
  .login-box-body,
  .error-box-body,
  .identify-box-body {
    padding: 40px 20px 20px;
  }
}
.login-box-body form .form-group,
.error-box-body form .form-group,
.identify-box-body form .form-group {
  position: relative;
}
@keyframes boxBodyEvenAnimation {
  0% {
    left: -40px;
    opacity: 0;
  }
  100% {
    left: 0;
    opacity: 1;
  }
}
@keyframes boxBodyOddAnimation {
  0% {
    right: -40px;
    opacity: 0;
  }
  100% {
    right: 0;
    opacity: 1;
  }
}
.identify-box-body {
  padding-top: 10px;
}
.identify-box-body a.well-sm {
  margin: 10px auto;
  float: left;
  width: 100%;
}
.identify-box-body a:hover,
.identify-box-body a:active,
.identify-box-body a:focus {
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
  box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
}
.btn {
  font-size: 20px;
}
.btn.btn-sm {
  font-size: 12px;
}
