body, html {
	height: 100%;
	margin: 0;
	padding: 0;
}

.container {
	display: flex;
	flex-direction: column;
	height: 100%;
	
	background: url('../images/login-bg.png') center/cover no-repeat; 
}

.background-image {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	object-fit: cover;
	
	background-image: url('../images/loginBody.png'); 
	background-size: cover; 
	background-position: center; 
	display: flex; 
	justify-content: center; 
	align-items: center;
	width:1036px;
	height:536px;"
}

.center {
	position: absolute;
	top: 275px;
	left: 75%; 
	transform: translate(-50%, -50%);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.form {
	width: 388px;
	padding-left: 10px;
	padding-right: 10px;
}

.form input[type="text"],
.form input[type="password"],
.form input[type="number"] {
	width: 100%;
	box-sizing: border-box;
	padding-left :10px;
	border: none;
	height:100%;
	border-radius: 8px;
}

.form button {
	width: 100%;
	margin-top:10px;
	padding-top:10px;
	padding-bottom:10px;
	background: rgb(19, 131, 241);
	color: white;
	border: none;
	border-radius: 30px;
	cursor: pointer;
	height:48px;
}

.login-heading {
    display: block; /* 让span变成块级元素 */
    font-size: 26px;
    padding: 10px;
    border-radius: 5px;
    color: rgb(26, 26, 26);
    font-family: "思源黑体 CN", sans-serif;
    letter-spacing: 2px;
}


.verificationCode-container {
	display: flex;
	align-items: center;
}

.input-container { 
	width: 200px;
	display: flex;
    align-items: center;
    margin-bottom: 8px;
    box-sizing: border-box;
	border: 1px solid rgb(221, 224, 230);
	
	background: rgb(255, 255, 255);
	height:38px;
	margin-right:3px;
}
.iframe-container {
	flex-grow: 1;
	width: 100px;
	height:35px;
	margin-bottom:12px;
}

.forgot-password {
   	font-size: 14px;
	color: #87CEFA;
	text-align: right;
	margin-right:15px;
	cursor: pointer;
}

.get-verif-code {
	 width:116px;
	 height:35px;
	 background:#EFEFEF;
	 border:1px solid #DDDEE3;
	 border-radius:8px;
	 line-height:35px;
	 text-align:center;
	 cursor:pointer;
	 font-size:14px;
	 color:#333;
	 margin-bootom:12px;
}

#footer {
	position: fixed;
	bottom: 0;
	left: 50%;
	font-size: 14px;
	letter-spacing: 0px;
	color: rgb(24, 24, 24);
	font-family: 思源黑体;
	transform: translateX(-50%);
	text-align: center;
   }
.notclick{
	pointer-events: none;
}

.login-field {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    border-radius: 8px;
    box-sizing: border-box;
	border: 1px solid rgb(221, 224, 230);
	
	background: rgb(255, 255, 255);
	height:48px;
 }
 
.login-field img {
	margin-left: 10px;
}


.login-field input:focus {
    /* 使用与默认状态相同的样式 */
	outline: none; /* 移除默认的聚焦时边框 */
}
 
 .login-caption {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
	height:21px;
	color: rgb(26, 26, 26);
	font-family: 微软雅黑;
	font-size: 16px;
 }