html,body{
	margin:0;
	padding:0;
	width:100%;
	height:100%;
}
.login-wrapper{
	width:100%;
	height:100%;
	position: relative;
	background: #f3f5f8;
	overflow: hidden;
}
.svg-bg{
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*margin-left: -48%;*/
    background-image: url(../img/login_bg.jpg);
    /*background-position: 100%;*/
    background-repeat: no-repeat;
    background-size: 100% 100%;
    content: "";
}
.login-content{
	position: absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	display: flex;
	box-sizing: border-box;
}
.login-left{
	width:60%;
	height:100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-bottom: 5%;
	box-sizing: border-box;
	color:#ffffff;
}
.login-right{
	width:40%;
	height:100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding-bottom: 5%;
	box-sizing: border-box;
    padding-right: 5%;
}
.left-inner{
	width:80%;
	height: 100%;
}
.login-left .left1{
	margin-top: 10%;
}
.login-left .left1 img{
	width:50%;
}
.login-left .left2{
	margin-top: 50px;
}
.login-left .left2 img{
	width:90%;
}
.login-left .left3{
	margin-top: 40px;
	font-size: 30px;
}
.login-left .left4{
	margin-top: 20px;
	font-size: 14px;
	line-height: 24px;
}
.right-card{
	width:400px;
	height:420px;
	background: #ffffff;
	box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
	border-radius: 16px;
	padding:30px 40px;
	display: flex;
	align-items: center;
	flex-direction: column;
	box-sizing: border-box;
}
.right-card .title{
	font-size: 24px;
	/*font-weight:bold;*/
	color: #1a7bb9;
	padding:0 0 15px 0;
	width:100%;
	text-align: center;
}
.right-card .username{
	width:100%;
	padding:10px 0;
}
.right-card .username input{
	height:36px;
	width:100%;
	border:1px solid #dddddd;
	padding:0 15px;
	box-sizing: border-box;
	border-radius: 30px;
}
.right-card .password{
	width:100%;
	padding:10px 0;
}
.right-card .password input{
	height:36px;
	width:100%;
	border:1px solid #dddddd;
	padding:0 15px;
	box-sizing: border-box;
	border-radius: 30px;
}
.right-card .checkbox{
	width:100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding:10px 0;
    box-sizing: border-box;
}
.right-card .checkbox .checkbox1{
	display: flex;
	align-items: center;
}
.right-card .checkbox .checkbox1 #rememberme{
	outline-color:#dddddd;
	border-color:#dddddd;
}
.right-card .checkbox .checkbox1 label{
	font-size: 14px;
	cursor: pointer;
	color:#666;
	padding-left:5px;
}
.right-card .validate-code{
    width:100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:10px 0;
    box-sizing: border-box;
}
.right-card .validate-code input{
    height:36px;
    width:100%;
    border:1px solid #dddddd;
    padding:0 15px;
    box-sizing: border-box;
    border-radius: 2px;
}
.right-card .validate-code .imgcode{
    height:35px;
    margin-left:15px;
    border:none;
}
.login-btn{
	margin-top: 20px;
	width:100%;
    cursor: pointer;
}
.login-btn button{
    background-color: #2a50ec;
    width:100%;
    text-align: center;
    padding:10px 0;
    color:#ffffff;
    border:none;
	border-radius: 30px;
}
.login-btn button:hover{
    color:#fff;
    cursor: pointer;
}
.right-card .validate-code input:focus,.right-card .username input:focus,.right-card .password input:focus{
    border:1px solid blue;
}