html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  margin: 0;
  background: linear-gradient(to bottom, #eeeeee 0%, #cccccc 100%);
}

.container {
  margin: 10%;
  height: 380px;
}

.login-logo {
  width: 52%;
  height: 380px;
  line-height: 380px;
  float: left;
  text-align: center;
}

.login-logo .logo-img {
  filter: blur(2px);
  user-select: none;
  display: none;
}

.login-logo .logo-symbol {
  filter: blur(2px);
  user-select: none;
  font-size: 200px;
  line-height: 120px;
  color: rgba(255, 255, 255, 0.3);
  margin-left: 160px;
}

.login-panel {
  width: 46%;
  height: 380px;
  float: right;
  box-sizing: border-box;
  padding-left: 40px;
  background: url(login_panel_line.png) no-repeat left center;
}

.panel-title {
  height: 57px;
  line-height: 55px;
  font-size: 24px;
  color: #515151;
  margin: 25px 0;
  padding-left: 38px;
  user-select: none;
  background: url(login_icon.png) no-repeat left center;
}

.login-form input:required:invalid {
  box-shadow: none;
}

.login-form input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
  box-shadow: 0 0 0 1000px #ffffff inset !important;
}

.login-form .text-label {
  border-radius: 2px;
  display: block;
  position: relative;
  width: 292px;
  height: 30px;
  overflow: hidden;
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-position: 6px center;
  padding: 4px 4px 2px 4px;
  border-width: 1px;
  border-style: solid;
  border-color: #aaa #ddd #ddd #aaa;
  margin-bottom: 10px;
}

.login-form .account {
  background-image: url(login_account.png);
}

.login-form .password {
  background-image: url(login_password.png);
}

.login-form .captcha {
  background-image: url(login_captcha.png);
}

.login-form .captcha.hide {
  display: none;
}

.login-form .captcha-img {
  position: absolute;
  top: 1px;
  right: 1px;
  background: url(loading.gif) no-repeat center center;
  background-size: 32px;
}

.login-form .text {
  outline: none;
  border: 0;
  background: transparent;
  margin-left: 32px;
  width: 260px;
  height: 28px;
  line-height: 28px;
  font-size: 16px;
  color: #333;
  z-index: 2;
}

.login-form .button-label {
  margin-top: 20px;
  display: block;
}

.login-form .submit {
  width: 302px;
  height: 38px;
  overflow: hidden;
  letter-spacing: 0.5em;
  user-select: none;
  border: none;
  display: block;
  background: url(login_submit.png) no-repeat left top;
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
}

.login-form .submit:disabled {
  opacity: 0.5;
  cursor: wait;
}

.login-form .submit:disabled span {
  display: inline-block;
  margin-top: 2px;
  width: 32px;
  height: 32px;
  background: url(oadmin_logo_32.png) no-repeat center center;
  background-size: 80%;
  filter: invert(100%);
  animation: rotate-keyframes 1s linear infinite;
}

@keyframes rotate-keyframes {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  75% {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

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