body {
  -webkit-perspective: 800px;
  perspective: 800px;
  height: 100vh;
  margin: 0;
  overflow: hidden;
  font-family: 'Gudea', sans-serif;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#EA5C54 ', endColorstr='#bb6dec', GradientType=1);
}

body ::-webkit-input-placeholder {
  color: #ffffff;
  opacity: 1;
}

:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #ffffff;
  opacity: 1;
}

::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #ffffff;
  opacity: 1;
}

input:-ms-input-placeholder {
  color: #ffffff;
  opacity: 1;
}

input::-webkit-input-placeholder {
  color: #ffffff;
  opacity: 1;
}

.login-logo {
  position: fixed;
  left: 30px;
  top: 30px;
  width: 200px;
}

.login-wrap {
  width: 100%;
  height: 100vh;
  background: url(../../static/images/logo-img2.jpg) no-repeat fixed;
  background-size: cover;
}

body .login {
  box-shadow: -15px 15px 15px rgba(6, 17, 47, 0.4);
  opacity: 1;
  -webkit-transition-timing-function: cubic-bezier(0.68, -0.25, 0.265, 0.65);
  -webkit-transition-property: -webkit-transform, opacity, box-shadow, top, left;
  transition-property: transform, opacity, box-shadow, top, left;
  -webkit-transition-duration: .5s;
  transition-duration: .5s;
  -webkit-transform-origin: 161px 100%;
  -ms-transform-origin: 161px 100%;
  transform-origin: 161px 100%;
  -webkit-transform: rotateX(0deg);
  transform: rotateX(0deg);
  position: fixed;
  width: 290px;
  height: 224px;
  left: 50%;
  margin-left: -185px;
  top: 50%;
  margin-top: -152px;
  padding: 40px;
  background: #35394a;
  background: -webkit-gradient(linear, left bottom, right top, color-stop(0%, #35394a), color-stop(100%, rgba(0, 0, 0, 0.65)));
  background: -webkit-linear-gradient(230deg, rgba(53, 57, 74, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
  background: linear-gradient(230deg, rgba(53, 57, 74, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(53, 57, 74, 0)', endColorstr='rgba(0, 0, 0,0.65)', GradientType=1);
}

body .login_fields {
  width: 100%;
}

body .login_fields .icon {
  width: 16px;
  height: 16px;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 50%;
  margin-top: -8px;
}

body .login_fields .icon img {
  width: 100%;
  display: block;
}

body .login_fields__user,
body .login_fields__password {
  position: relative;
  height: 48px;
}


body .login_fields input[type='text'],
body .login_fields input[type='password'] {
  color: #ffffff;
  width: 255px;
  padding: 0;
  position: absolute;
  right: 0;
  height: 48px;
  background: rgba(57, 61, 82, 0);
  border-top: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0);
  border-right: none;
  border-left: none;
  outline: none;
  font-family: 'Gudea', sans-serif;
  box-shadow: none;
  font-size: 16px;
  transition: all .3s;
  -ms-transition: all .3s;
  -moz-transition: all .3s;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  opacity: 1;
}

body .login_fields input[type='text']:focus,
body .login_fields input[type='password']:focus {
  border-bottom: 2px solid #ffffff;
}



body .login_fields__password .captcha {
  width: auto;
  height: 38px;
  position: absolute;
  right: 0;
  top: 4px;
  cursor: pointer;
}

body .login_fields__submit {
  width: 132px;
  margin: 0 auto;
}

body .login_fields__submit button {
  width: 130px;
  height: 40px;
  border-radius: 40px;
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 16px;
  -webkit-transition-property: background, color;
  transition-property: background, color;
  -webkit-transition-duration: .2s;
  transition-duration: .2s;
  margin: 0;
  margin-top: 40px;
}

.layui-input:hover,
.layui-textarea:hover {
  border-color: #ffffff !important;
}

body .login_fields__submit button:focus {
  box-shadow: none;
  outline: none;
}

body .login_fields__submit button:hover {
  color: white;
  background: #009688;
  cursor: pointer;
  -webkit-transition-property: background, color;
  transition-property: background, color;
  -webkit-transition-duration: .2s;
  transition-duration: .2s;
}