@charset "UTF-8";
body{
  background: url(../image/login/login-bg.png) no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  background-color: #ccc;
}
.logo{
  position: absolute;
  top: 120px;
  right: 311px;
  width: 420px;
  height: 104px;
}
.login_box{
  width: 528px;
  /*height: 500px;*/
  background: rgba(255,255,255,1);
  box-shadow: 0px 7px 32px 4px rgba(47,47,47,0.24);
  border-radius: 5px;
  position: absolute;
  top: 260px;
  right: 252px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 30px;
}
.login_box_header{
  width: 130px;
  height: 50px;
  line-height: 50px;
  border-bottom: 4px solid #d4bb7b;
  text-align: center;
  color: #060000;
  font-size: 30px;
  margin-top: 40px;
  font-family:PingFang SC;
}
.account{
  width: 380px;
  height: 40px;
  border-bottom: 1px solid rgba(0,0,0,0.6);
  margin-top: 30px;
}
.account input{
  width: 380px;
  height: 40px;
  border: none;
  outline: none;
  color: #333;
  font-size: 18px;
  padding-left: 10px;
}
.account ::-webkit-input-placeholder,.password ::-webkit-input-placeholder,.validation ::-webkit-input-placeholder {
    color: #666;
}
.account ::-moz-input-placeholder,.password ::-moz-input-placeholder,.validation ::-moz-input-placeholder {
    color: #666;
}
.account ::-ms-input-placeholder,.password ::-ms-input-placeholder,.validation ::-ms-input-placeholder {
    color: #666;
}
.password{
  width: 380px;
  height: 40px;
  border-bottom: 1px solid rgba(0,0,0,0.6);
  margin-top: 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.password input{
  width: 70%;
  height: 40px;
  border: none;
  outline: none;
  color: #333;
  font-size: 18px;
  padding-left: 10px;
}
.password .forget_txt{
  width: 30%;
  height: 40px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: #999;
  font-size: 18px;
  cursor: pointer;
}
.password .forget_txt:hover{
  color: #333;
}
.validation{
  width: 380px;
  height: 40px;
  border-bottom: 1px solid rgba(0,0,0,0.6);
  margin-top: 30px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.validation input{
  width: 65%;
  height: 40px;
  border: none;
  outline: none;
  color: #333;
  font-size: 18px;
  padding-left: 10px;
}
.validation_code{
  width: 380px;
  margin-top: 30px;
}
.validation_code img{
  width: 100%;
  cursor: pointer;
}
.login_btn{
  width:290px;
  height:60px;
  border-radius:7px;
  margin-top: 30px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color:rgba(212,187,123,1);
  font-size: 24px;
  cursor: pointer;
  background-color: transparent;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  border-radius: 35px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}
.login_btn:after {
  content: '';
  position: absolute;
  width: 0;
  height: 100%;
  top: 0;
  left: 100%;
  background: #333;
  transition: inherit;
  -webkit-transition: inherit;
  border-radius: 25px;
  z-index: -1;
}

.login_btn:hover:after {
  width: 100%;
  left: 0;
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  transition: width .6s cubic-bezier(.85, 0, .15, 1);
  -webkit-transition: width .6s cubic-bezier(.85, 0, .15, 1);
}

.subcribe-btn:hover {
  color: #fff;
}
