* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
  font-family: "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
}

body {
  position: relative;
  height: 100%;
  background-image: url(../img/login/bg.jpg);
  background-size: 1920px 1080px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.logo {
  position: absolute;
  left: 24px;
  top: 21px;
  width: 280px;
  height: 50px;
  background-image: url(../img/login/logo.png);
  background-repeat: no-repeat;
  text-indent: -9999px;
}

.login-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 490px;
  height: 375px;
  margin-top: -187.5px;
  margin-left: -245px;
  padding-top: 50px;
  padding-right: 65px;
  padding-left: 65px;
  border-radius: 8px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 12px #999;
  box-shadow: 0 0 12px #999;
}

.login-wrap .form-group {
  position: relative;
  height: 44px;
  padding-left: 52px;
  margin-bottom: 30px;
  border: 1px solid #ccc;
}

.login-wrap .form-group label {
  position: absolute;
  left: 0;
  top: 0;
  width: 52px;
  height: 42px;
  cursor: pointer;
}

.login-wrap .form-group label .icon {
  display: inline-block;
  width: 52px;
  height: 42px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.login-wrap .form-group label:after {
  position: absolute;
  content: '';
  right: 0;
  top: 50%;
  width: 1px;
  height: 30px;
  margin-top: -15px;
  background-color: #e6e6e6;
}

.login-wrap .form-group .form-control {
  display: block;
  border: none;
  width: 100%;
  height: 42px;
  line-height: 42px;
  padding-left: 15px;
  padding-right: 15px;
}

.login-wrap .btn {
  display: block;
  width: 100%;
  height: 48px;
  cursor: pointer;
}

.login-wrap .btn-primary {
  border: none;
  background-color: #36a3fb;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}

.icon-user {
  background-image: url(../img/login/user.png);
}

.icon-lock {
  background-image: url(../img/login/key.png);
}

.login-title {
  height: 34px;
  line-height: 34px;
  font-size: 24px;
  margin-bottom: 35px;
}