*{
  margin: 0;
  padding: 0;
  font-size: 14px;
}
a{
  text-decoration:none;
}
html,body{
  width: 100%;
  height: 100%;
}
.login_view{
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}
.wrapper{
  width: 980px;
  height: 500px;
  display: flex;
  background: rgba(255,255,255,1);
  border-radius: 12px;
  box-shadow:  0 0 30px 0 rgba(44,104,255,0.2);
}
.login_left, .login_right{
  flex: 1;
}
.login_left .login_ikon{
  width: 490px;
  height: 500px;
}
.login_right{
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.login_right .header{
  height: 28px;
  display: flex;
  align-items: center;
}
.login_right .login_form{
  width: 300px;
  margin-top: 52px;
}
.login_right .header .title{
  display: inline-block;
  line-height: 16px;
  padding-left: 8px;
  margin-left: 8px;
  border-left: 1px solid rgba(235,238,245,1);
  color: rgba(144,147,153,1);
}

 .titlewithlogo{
  display: inline-block;
  line-height: 16px;
  padding-left: 8px;
  margin-left: 8px;
  border-left: 1px solid rgba(235,238,245,1);
  color: rgba(144,147,153,1);
}


 
    

.login_right .header img{
  
  height: 28px;
}
.login_form input {
  outline: none;
}
.login_form input::-webkit-input-placeholder{
  color:rgba(164,174,193,1);
}
.login_form input:-moz-placeholder{
  color:rgba(164,174,193,1);
}
.login_form input::-moz-placeholder{
  color:rgba(164,174,193,1);
}
.login_form input:-ms-input-placeholder{
  color:rgba(164,174,193,1);
}
 

.login_form .txt_input{
  width: 300px;
  height: 40px;
  border: 1px solid rgba(220,226,241,1);
  border-radius: 8px;
  padding: 0 16px;
  padding-left: 48px;
  box-sizing: border-box;
}
.login_form .row{
  margin-bottom: 24px;
  position: relative;
}
.login_form .icon_input{
	position: absolute;
	left: 20px;
	top:12px;
	width: 16px;
	height: 16px;
}



.login_form .password_list{
  display: flex;
  height: 22px;
  align-items: center;
  justify-content: space-between;
}
.login_form .check_password{
  width: 16px;
  height: 16px;
}
.login_form .remember_password{
  height: 22px;
  display: flex;
  align-items: center;
}
.login_form .forget_password{
  color: rgba(0,0,0,0.85);
}
.login_form .remember_password span{
  margin-left: 4px;
  color: rgba(0,0,0,0.85);
}
.login_form .operation_btn{
  width: 300px;
  height: 40px;
  border: none;
  cursor: pointer;
  border-radius: 8px;
}
.login_form .login_btn{
  margin-top: 16px;
  background: rgba(44,104,255,1);
  color: rgba(255,255,255,1);
}
.login_form .register_btn{
  margin-top: 8px;
  background: rgba(227,235,255,1);
  color: rgba(44,104,255,1);
}