body, html {
	height: 100%;
	margin: 0;
	padding: 0;
}

.container {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.background-image {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	object-fit: cover;
	
	background-image: url('../images/loginBody.jpg'); 
	background-size: cover; 
	background-position: center; 
	display: flex; 
	justify-content: center; 
	align-items: center;
	width:1036px;
	height:536px;"
}

.center {
	position: absolute;
	top: 280px;
	left: 75%; /* 调整这个值来设置表单的左边距 */
	transform: translate(-50%, -50%);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.form {
	width: 306px;
	padding-left: 10px;
	padding-right: 10px;
	
	background-color: #ffffff;
	border-radius: 5px;
}

.form input[type="text"],
.form input[type="password"],
.form input[type="number"] {
	width: 95%;
	padding: 10px;
	margin-bottom: 10px;
	box-sizing: border-box;
}

.form button {
	width: 95%;
	padding-top:10px;
	padding-bottom:10px;
	background-color: #87CEFA;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

/* 添加标题样式 */
h1 {
	font-size: 24px;
	padding: 10px;
	border-radius: 5px;
	background: -webkit-linear-gradient(#b3e0f7, #2d6ea5);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}


.login-mode-change {
	position: absolute;
	top: 43px;
	right: 41px;
	transform: translate(50%, -50%); /* 调整按钮位置 */
	width: 48px; /* 调整图片的宽度 */
	height: 48px; /* 调整图片的高度 */
	background-image: url('../images/login_telephone.png'); /* 替换为您的图片路径 */
	background-size: cover;
	cursor: pointer;
	border: none;
}

/* 新增样式 */
h2 {
	font-size: 18px;
	text-align: center;
	background: -webkit-linear-gradient(#bee2f9, #4378d4);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.verificationCode-container {
	display: flex;
	align-items: center;
}

.input-container { 
	width: 190px;
	box-sizing: border-box;
}
.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:96px;
	 height:35px;
	 background:#EFEFEF;
	 border:1px solid #DDDEE3;
	 border-radius:1px;
	 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;
	color: gray;
	transform: translateX(-50%);
	text-align: center;
   }
.notclick{
	pointer-events: none;
}