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: 255px;
	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;
}

.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;
    margin-bottom:30px;
}



.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;
 }
 
 .remember-me {
    display: flex;
    align-items: center;
    margin: 10px 0;
    font-family: "微软雅黑", sans-serif;
    font-size: 14px;
    color: #666;
}

.remember-me input {
    margin-right: 8px;
	vertical-align: middle;
}

/* 按钮组样式 */
.button-group {
    display: flex;
    gap: 15px; /* 按钮间距 */
    width: 95%;
    margin-top:40px;
    padding-left:10px;
}

/* 登录按钮保持原样式 */
#account_login {
    flex: 1;
    background: rgb(19, 131, 241);
	color: white;
	border: none;
	border-radius: 30px;
	cursor: pointer;
	height:48px;
}

/* 注册按钮样式 */
#account_register {
    flex: 1;
    background: rgb(64, 189, 255);
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    height: 48px;
}

.links-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 15px;
    font-size: 14px;
}

/* 左侧链接样式 */
.left-link .faq-link {
    color: rgb(19, 131, 241); /* 默认灰色 */
     text-decoration: underline;
    font-family: "微软雅黑", sans-serif;
}

/* 右侧链接样式 */
.right-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.forgot-link {
    color: #ff4d4f; /* 红色 */
    text-decoration: underline;
    font-family: "微软雅黑", sans-serif;
}


.link-divider {
    color: #d9d9d9;
    user-select: none;
}

#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;
    /*width: 100%;*/
    padding-bottom: 10px;
}

.footer-links {
    display: flex;
    flex-direction: column; /* 改为垂直排列 */
    gap: 10px; /* 链接之间的间距 */
    margin-bottom: 8px;
}

.footer-links a {
    color: #1890ff;
    text-decoration: underline;
	font-weight:bold
    /* 移除左右margin，因为现在是垂直排列 */
}

#showMsg{
    color: red;
    position: absolute;
    bottom: 25px;
    left: calc(75% - 194px);
}