.login-bg{
  background-color: #699dcd;
  background-image: url(../image/login-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.login-wrap{
  display: block;
  width:400px;
  height: 420px;
  position: absolute;
  left:50%;
  top:50%;
  transform: translate(-50%,-50%);
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 5px;
  box-shadow: 0px 0px 10px 0px #eba59d;
}
.logo{
  margin-top: 20px;
  padding: 12px 0px;
  text-align: center;
}
.input-item-wrap{
  overflow: hidden;
  box-sizing: border-box;
  width: 90%;
  height: 68px;
  margin: auto;
  padding:15px 15px;
  position: relative;
  left:0px;
  top:0px;
  border-radius: 10px;
}
.input-item-wrap input{
    box-sizing: border-box;
    display: block;
    width: 100%;
    height: 100%;
    padding-left: 60px;
    border-radius: 5px;
    outline: none;
    border:1px solid rgba(76, 137, 238, 0.8);
    /*cursor: pointer;*/
}
.input-item-wrap input:focus{
  outline: none;
  box-shadow: 0px 0px 10px 0px rgba(76, 137, 238, 0.5);
}

.input-item-wrap img{
  display: inline-block;
  position: absolute;
  left: 32px;
  top:22px;
  width:24px;
  height: 24px;
}

.code-wrap{
  overflow: hidden;
  box-sizing: border-box;
  width: 90%;
  height: 68px;
  margin: auto;
  padding:15px 15px;
}
.code-input-wrap{
  float: left;
  width:200px;
  height: 100%;
  position: relative;
  left:0px;
  top:0px;
}
.code-input-wrap img{
  display: inline-block;
  position: absolute;
  left: 20px;
  top:7px;
  width:20px;
  height: 22px;
}

.code-input-wrap input{
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 100%;
  padding-left: 60px;
  border-radius: 5px;
  outline: none;
  border:1px solid rgba(76, 137, 238, 0.8);
  /*cursor: pointer;*/
}
.code-input-wrap input:focus{
  outline: none;
  box-shadow: 0px 0px 10px 0px rgba(76, 137, 238, 0.5);
}
.code-img{
  float: right;
  width:100px;
  height: 100%;
  font-size: 0px;
}

.code-img img{
  display: block;
  width:100%;
  height: 100%;
}
.login-button{  
  width: 90%;
  margin:10px auto 0px auto;
  padding:12px 0px;
  text-align: center;
  background-color: #4c89ee;
  color:#ffffff;
  border-radius: 5px;
  cursor: pointer;

}