body {
  background: url("../images/bg.png") center;
  background-size: cover;
  min-height: 100vh;
}

.login-header {
  padding: 0 45px;
  overflow: hidden;
  color: #fff;
  line-height: 90px;
  font-size: 18px;
}

.login-header > div > * {
  vertical-align: middle;
}

.login-header .left .dividing-line {
  margin: 0 15px;
  display: inline-block;
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.5);
}

.wrapper {
  width: 1200px;
  margin: 0 auto;
}

.login {
  padding-top: 100px;
  padding-bottom: 50px;
  height: 610px;
  overflow: hidden;
}

.login .left {
  width: 670px;
  float: left;
  height: 100%;
  text-align: center;
  background-image: linear-gradient(to right, rgba(0, 176, 243, 0.8), rgba(0, 176, 243, 0.2));
}

.login .left img {
  margin-top: 120px;
}

.login .right {
  width: 530px;
  float: left;
  color: #cccccc;
  height: 100%;
  background: rgba(150, 150, 150, 0.2);
}

.login-content {
  width: 300px;
  margin: 100px auto 0;
}

.login-content h3 {
  font-size: 34px;
  text-align: center;
}

.login-content h6 {
  font-size: 16px;
  padding: 20px 0;
  text-align: center;
}

.login-content .input-box {
  position: relative;
  margin-top: 18px;
}

.login-content .input-box input {
  display: block;
  width: 100%;
  height: 46px;
  line-height: 46px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 5px;
  padding-left: 45px;
  padding-right: 10px;
  box-sizing: border-box;
  transition: border-color 0.3s;
  -webkit-transition: border-color 0.3s;
  color:white;
}

.login-content .input-box input:focus {
  border-color: #42D1FF;
}

.login-content .input-box .icon {
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  width: 45px;
  text-align: center;
}

.login-content .input-box .icon img {
  margin-top: 12px;
}

.check-box {
  position: relative;
  overflow: hidden;
  margin: 23px 0;
}

.check-box .check .text {
  line-height: 16px;
  margin-left: 10px;
}

.sbm-btn {
  display: block;
  width: 100%;
  line-height: 28px;
}

.register {
  margin-top: 33px;
  text-align: center;
}

/*设置checkout 样式 */
#remember + label {
  display: block;
  width: 16px;
  height: 16px;
  box-sizing: border-box;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 2px;
}

#remember:checked + label::before {
  display: block;
  content: "\2714";
  text-align: center;
  font-size: 12px;
  color: white;
}

#remember {
  visibility: hidden;
}


/* Safari，Chrome WebKit browsers */
input::-webkit-input-placeholder {
  color: #ccc;
}

/* 火狐 Mozilla Firefox 4 to 18 */
input:-moz-placeholder {
  color: #ccc;
}

/* 火狐 Mozilla Firefox 19+ */
input::-moz-placeholder {
  color: #ccc;
}

/* Internet Explorer 10+ */
input:-ms-input-placeholder {
  color: #ccc;
}

