body{
  background: url(../img/login-bg.png) no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 0;
  height: 100%;
}

header{
  background: transparent;
  box-shadow: none;
}

.main{
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.login-pic{
  height: 54%;
  margin-left: 30px;
}

.login-box{
  width: 220px;
  padding: 30px 25px;
  background: url(../img/login-modal.png) right top no-repeat;
  background-size: 30% auto;
  background-color: #ffffff;
  border-radius: 10px;
  margin-top: -30px;
}

.login-title{
  font-size: 20px;
  margin-bottom: 35px;
}

.login-title::after{
  content: '';
  width: 2em;
  height: 3px;
  display: block;
  border-radius: 4px;
  background: #2AD182;
  margin-top: 6px;
}

.login-input{
  width: 100%;
  border: none;
  border-bottom: 1px solid #E5E5E5;
  outline: none;
  line-height: 2.4rem;
  letter-spacing: 1px;
  font-size: 13px;
}

input::-webkit-input-placeholder{
  -webkit-transition: all .2s;
}

input:focus::-webkit-input-placeholder{
  color:#CCC;
  padding-left: 5px;
}

.prompt{
  height: 28px;
  line-height: 28px;
  text-align: left;
  font-size: 12px;
  color: #f08;
  margin-bottom: 8px;
}

#loginBtn{
  width: 100%;
  border: none;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  line-height: 34px;
  letter-spacing: 3px;
  cursor: pointer;
  margin: 10px 0;
  border-radius: 5px;
  box-shadow: 0 12px 10px -4px #a9fcc1;
  background: linear-gradient(to right, #37e77e, #29cc82);
}

#loginBtn::placeholder{
  font-size: 12px;
}

.select-box{
  width: 100%;
  margin-bottom: 36px;
}

.select-box > .login-input{
  text-indent: 0;
}

#login-footer{
  background: transparent;
  color: #fff;
}

@media screen and (min-width: 1600px){
  .main{
    justify-content: space-between;
  }
}