html,
body.site-login-page {
	height: 100%;
	margin: 0;
}

body.site-login-page {
	font-family: 'Helvetica Neue', Helvetica, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', Arial, sans-serif;
	background: linear-gradient(-45deg, #EE7752, #E73C7E, #23A6D5, #23D5AB);
	background-size: 400% 400%;
	animation: siteLoginGradient 15s ease infinite;
	color: #333;
}

@keyframes siteLoginGradient {
	0% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}

.site-login-wrapper {
	min-height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 24px 16px 32px;
}

.site-login-card {
	width: 100%;
	max-width: 920px;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
}

.site-login-brand {
	flex: 1 1 340px;
	padding: 48px 40px;
	background: linear-gradient(160deg, rgba(35, 166, 213, 0.08), rgba(231, 60, 126, 0.08));
	border-right: 1px solid rgba(0, 0, 0, 0.04);
}

.site-login-brand-logo {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 28px;
	text-decoration: none;
}

.site-login-brand-logo img {
	width: 44px;
	height: 44px;
	object-fit: contain;
}

.site-login-brand-logo span {
	font-size: 22px;
	font-weight: 700;
	color: #2c3e50;
}

.site-login-brand h2 {
	font-size: 28px;
	font-weight: 600;
	line-height: 1.4;
	color: #2c3e50;
	margin: 0 0 12px;
}

.site-login-brand .lead {
	color: #666;
	font-size: 15px;
	line-height: 1.7;
	margin-bottom: 28px;
}

.site-login-features {
	list-style: none;
	padding: 0;
	margin: 0;
}

.site-login-features li {
	position: relative;
	padding-left: 22px;
	margin-bottom: 12px;
	color: #555;
	font-size: 14px;
	line-height: 1.6;
}

.site-login-features li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 8px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: linear-gradient(135deg, #23A6D5, #E73C7E);
}

.site-login-form-panel {
	flex: 1 1 380px;
	padding: 48px 40px 40px;
}

.site-login-form-panel h3 {
	margin: 0 0 8px;
	font-size: 24px;
	font-weight: 600;
	color: #2c3e50;
}

.site-login-subtitle {
	color: #888;
	font-size: 14px;
	margin-bottom: 28px;
}

.site-login-form-panel .form-control {
	height: 46px;
	border: 1px solid #e0e6ed;
	border-radius: 10px;
	padding: 10px 14px;
	font-size: 14px;
	box-shadow: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-login-form-panel .form-control:focus {
	border-color: #23A6D5;
	box-shadow: 0 0 0 3px rgba(35, 166, 213, 0.15);
}

.site-login-form-panel .site-input-group {
	margin-bottom: 16px;
}

.site-login-form-panel .site-input-label {
	display: block;
	font-size: 13px;
	font-weight: 500;
	color: #666;
	margin-bottom: 6px;
}

.site-login-captcha-row {
	display: flex;
	gap: 12px;
	align-items: center;
	margin-bottom: 16px;
}

.site-login-captcha-row .form-control {
	flex: 1;
	margin: 0;
}

.site-login-captcha-row .imgcode {
	height: 46px;
	border-radius: 10px;
	border: 1px solid #e0e6ed;
	cursor: pointer;
}

.site-login-options {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 8px 0 20px;
	font-size: 13px;
}

.site-login-options label {
	margin: 0;
	font-weight: normal;
	color: #666;
	cursor: pointer;
}

.site-login-btn {
	width: 100%;
	height: 46px;
	border: none;
	border-radius: 10px;
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	background: linear-gradient(135deg, #23A6D5, #1d8eb8);
	box-shadow: 0 8px 20px rgba(35, 166, 213, 0.35);
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.site-login-btn:hover {
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 10px 24px rgba(35, 166, 213, 0.45);
}

.site-login-links {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 20px;
	padding-top: 18px;
	border-top: 1px solid #f0f0f0;
	font-size: 14px;
}

.site-login-links a {
	color: #23A6D5;
	text-decoration: none;
}

.site-login-links a:hover {
	color: #1d8eb8;
	text-decoration: underline;
}

.site-login-footer {
	margin-top: 24px;
	text-align: center;
	color: rgba(255, 255, 255, 0.85);
	font-size: 13px;
}

.site-login-page label.error {
	position: inherit;
	color: #dc3545;
	font-size: 12px;
	margin-top: 4px;
}

@media (max-width: 767.98px) {
	.site-login-brand {
		border-right: none;
		border-bottom: 1px solid rgba(0, 0, 0, 0.04);
		padding: 32px 24px 24px;
	}

	.site-login-form-panel {
		padding: 32px 24px 28px;
	}

	.site-login-brand h2 {
		font-size: 22px;
	}
}
