*{
	padding: 0;
	margin: 0;
}
body{
	font-size: 16px;
}
.login{
	width: 100%;
	height: 100vh;
	overflow: scroll;
	background-image: url(../images/bg.png);
	background-size: 100% 100%;
}
.logo{
	width: 500px;
}
.login-bg{
	width: 80%;
	margin-left: 10%;
	margin-top: 4%;
}
.login-art{
	display: flex;
	justify-content: space-between;
	margin-top: 4%;
	align-items: center;
}
.login-input{
	background-color: rgba(255,255,255,0.7);
	width: 600px;
	border-radius: 10px;
	padding-bottom: 50px;
}
.login-title{
	color: #244574;
	font-size: 30px;
	width: 100%;
	text-align: center;
	margin-top: 40px;
	margin-bottom: 50px;
	letter-spacing: 5px;
}
.login-input div{
	width: 80%;
	margin-left: 10%;
	margin-top: 30px;
	display: flex;
    align-items: center;
}
.login-input div img{
	margin-right: 5px;
	display: inline-block;
}
.login-input div span{
	width: 70px;
	display: inline-block;
	text-align: right;
}
.login-input div input{
	width: calc(100% - 90px);
	border: solid 1px #7a9bb9;
	outline: none;
	line-height: 40px;
	height: 40px;
	border-radius: 2px; 
	padding-left: 5px;
}
#sex{
	width: calc(100% - 90px);
	border: solid 1px #7a9bb9;
	outline: none;
	line-height: 40px;
	height: 40px;
	border-radius: 2px; 
	padding-left: 5px;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}
input[type=number] {
    -moz-appearance: textfield;
}
.forget-password{
	float: right;
	margin-right: 10%;
	margin-top: 20px;
	color: #258df7;
	
}
.login-btn{
	display: flex;
	justify-content: space-between;
	margin-top: 70px !important;
}
.login-btn button:first-child{
	width: 40%;
	background-color: #fff;
	border: solid 1px #7a9bb9;
	text-align: center;
	height: 45px;
	line-height: 45px;
	color: #244574;
	font-size: 20px;
	outline: none;
	cursor: pointer;
	border-radius: 2px;
}
.login-btn button:last-child{
	width: 40%;
	background-image: linear-gradient( to bottom, #3395e2, #21466b);
	border: solid 1px #7a9bb9;
	text-align: center;
	height: 45px;
	line-height: 45px;
	color: #fff;
	outline: none;
	font-size: 20px;
	cursor: pointer;
	border-radius: 2px;
}
.login-info{
	color: #fff;
	font-size: 14px;
	max-width: 600px;
	line-height: 24px;
}
.login-info p{
	margin-bottom: 15px;
}
.alert-container{
	background-color: rgba(255,255,255,0.9);
    padding: 20px 20px;
    border: solid 1px #999;
    border-radius: 7px;
    -webkit-box-shadow: #c7c7c7 0px 0px 8px;
  	-moz-box-shadow: #c7c7c7 0px 0px 8px;
  	box-shadow: #c7c7c7 0px 0px 8px;

}
#code{
	width: calc(100% - 250px);
}
#getCodeBtn {
    background-color: #4a90e2;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 0 15px;
    cursor: pointer;
    font-size: 12px;
    white-space: nowrap;
    transition: background-color 0.3s;
    margin-left: 10px;
    height: 40px;
    width: 140px;
    display: inline-block;
    outline: none;
}
@media screen and (max-width: 768px){
	#getCodeBtn{
		width: 110px;
	}
	#code{
		width:calc(100% - 220px);
	}
}

#getCodeBtn:hover:not(:disabled) {
    background-color: #3a7bc8;
}

#getCodeBtn:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}


@media (min-width: 1400px) and (max-width: 1600px) {
	.login-bg{
		width: 90%;
		margin-left: 5%;
	}
}
@media (min-width: 1024px) and (max-width: 1400px) {
	.login-bg{
		width: 90%;
		margin-left: 5%;
	}
	.login-info{
		margin-top: 20px;
	}
	.login-art{
		flex-direction: column;
	}
	.login-info p {
	    margin-bottom: 5px;
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
	.login{
		width: 100%;
		height: 100vh;
		overflow: scroll;
		background-image: url(../images/bg.png);
		background-size:  auto 100%;
		background-position: center;
	}
	.login-info{
		margin-top: 20px;
	}
	.login-art{
		flex-direction: column;
	}
	.login-info p {
	    margin-bottom: 5px;
	}
}




@media screen and (max-width: 768px){
	.login{
		width: 100%;
		height: 100vh;
		overflow: scroll;
		background-image: url(../images/bg.png);
		background-size:  auto 100%;
		background-position: center;
	}
	.login-bg{
		width: 90%;
		margin-left:5%;
	}
	.logo{
		width: 100%;
	}
	.logo img{
		width: 100%;
	}
	.login-art{
		flex-direction: column;
	}
	.login-input{
		width: 100%;
		margin-left: 0;
	}
	.login-title{
		font-size: 20px;
		margin-bottom: 30px;
	}
	.login-btn button:first-child{
		width: 46%;
		font-size:18px;
	}
	.login-btn button:last-child{
		width: 46%;
		font-size:18px;
	}
	.login-input div{
		width: 90%;
		margin-left: 5%;
		margin-top: 20px;
	}
	.login-info{
		margin-top: 20px;
	}
	.login-info p{
		margin-bottom: 4px;
	}
	.login-info{
		font-size: 12px;
		line-height: 18px;
	}
}