	body {
		margin: 0;
		padding: 0;
		font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
	}
	.login-container {
		display: flex;
		min-height: 100vh;
	}
	.left-section {
		width: 60%;
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		padding: 40px;
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.left-section h1 {
		position: absolute;
		top: 40px;
		left: 40px;
		font-size: 40px;
		font-weight: bold;
		color: white;
		margin: 0;
		text-shadow: 0 2px 4px rgba(0,0,0,0.3);
	}
	.illustration {
		display: none;
	}
	.right-section {
		width: 40%;
		padding: 60px 40px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.login-form {
		width: 480px;
	}
	.logo-section {
		display: flex;
		align-items: center;
		margin-bottom: 30px;
	}
	.logo-section img {
		width: 40px;
		height: 40px;
		margin-right: 12px;
	}
	.logo-section h2 {
		font-size: 26px;
		color: #333;
		font-weight: 700;
		margin: 0;
	}
	.form-title {
		font-size: 16px;
		color: #666;
		margin-bottom: 24px;
	}
	.form-group {
		margin-bottom: 26px;
	}
	.form-group input {
		width: 100%;
		padding: 12px 16px;
		border: 1px solid #E0E0E0;
		border-radius: 4px;
		font-size: 14px;
		outline: none;
		transition: border-color 0.3s;
		box-sizing: border-box;
	}
	.form-group input:focus {
		border-color: #1E88E5;
	}
	.captcha-group {
		display: flex;
		gap: 12px;
		align-items: center;
	}
	.captcha-group input {
		flex: 1;
	}
	.captcha-img {
		width: 100px;
		height: 44px;
		border-radius: 4px;
		cursor: pointer;
		object-fit: cover;
	}
	.login-btn {
		width: 100%;
		padding: 12px;
		background-color: #1E88E5;
		color: white;
		border: none;
		border-radius: 50px;
		font-size: 16px;
		font-weight: 500;
		cursor: pointer;
		transition: background-color 0.3s;
		box-sizing: border-box;
	}
	.remember-group input {
		margin-right: 8px;
	}
	.remember-group label {
		font-size: 14px;
		color: #666;
		cursor: pointer;
	}
	.login-btn:hover {
		background-color: #1976D2;
	}