.main-container {
	width: 100%;
	height: auto;
	margin: 0;
	font-family: PingFang-SC-Regular;
	font-size: 15px;
	font-weight: normal;
	font-stretch: normal;
	letter-spacing: 0px;
	color: #0a0a0c;
}
.head-img {
	width: 100%;
	height: auto;
}
.login-input-1 {
    width: calc(100% - 60px);
    height: 45px;
    font-size: 15px;
    background-color: rgba(181, 195, 210, 0.2);
    box-shadow: 0px 3px 6px 0px rgba(188, 198, 208, 0.1);
    border-radius: 25px;
    border: solid 1px rgba(181, 195, 210, 0);
    box-sizing: border-box;
    padding-left: 65px;
    background-repeat: no-repeat;
    background-size: 15px 15px;
    background-position: 30px center;
    background-color: rgba(169, 190, 215, 0.2);
    background-image: url(../img/user_before1.png);
    margin: 60px 30px 0px;

}
.login-input-1:focus {
    outline: none;
    border: solid 1px #45b6fd;
    background-image: url(../img/user_after1.png);
}
.login-input-1:hover {
    border: solid 1px #45b6fd;
}
.login-input-2 {
    width: calc(100% - 60px);
    height: 45px;
    font-size: 15px;
    background-color: rgba(181, 195, 210, 0.2);
    box-shadow: 0 3px 6px 0 rgba(188, 198, 208, 0.1);
    border-radius: 25px;
    border: solid 1px rgba(181, 195, 210, 0);
    box-sizing: border-box;
    padding-left: 65px;
    background-repeat: no-repeat;
    background-size: 15px 15px;
    background-position: 30px center;
    background-color: rgba(169, 190, 215, 0.2);
    background-image: url(../img/password_before1.png);
    margin: 30px;
}
.login-input-2:focus {
    outline: none;
    border: solid 1px #45b6fd;
    background-image: url(../img/password_after1.png);
}
.login-input-2:hover {

    border: solid 1px #45b6fd;

}
.login-button {
    width: calc(100% - 60px);
    height: 45px;
    background-image: linear-gradient(5deg, 
		#4393ff 0%, 
		#56aaff 100%), 
	linear-gradient(
		#ffffff, 
		#ffffff);
	background-blend-mode: normal, 
		normal;
	box-shadow: 1px 2px 6px 0px 
		rgba(67, 147, 255, 0.46);
	border-radius: 25px;
    cursor: pointer;

    font-size: 17px;
    font-weight: normal;
    font-stretch: normal;
    letter-spacing: 3px;
    color: #ffffff;
    border: none;
    text-shadow: 0 1px 1px rgba(0,0,0,0.16);

    margin: 30px;
}
.login-button:focus{
    outline:none;
}
.login-button:disabled{
    width: calc(100% - 60px);
    height: 45px;
    background-image: linear-gradient(5deg, 
		#4393ff 0%, 
		#56aaff 100%), 
	linear-gradient(
		#ffffff, 
		#ffffff);
	background-blend-mode: normal, 
		normal;
	box-shadow: 1px 2px 6px 0px 
		rgba(67, 147, 255, 0.46);
	border-radius: 45px;
	opacity: 0.6;
    cursor: default;

    font-size: 17px;
    font-weight: normal;
    font-stretch: normal;
    letter-spacing: 3px;
    color: #ffffff;
    border: none;
    text-shadow: 0 1px 1px rgba(0,0,0,0.16);

    margin: 30px;
}