:root {
	--primary-color: #4a6cf7;
	--secondary-color: #6a11cb;
	--text-color: #1a1a1a;
	--background-color: #f4f7ff;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	font-family: 'Inter', sans-serif;
	background-color: var(--background-color);
	color: var(--text-color);
	line-height: 1.6;
}
.login-wrapper {
	display: flex;
	min-height: 100vh;
}
.login-image {
	flex: 1;
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 2rem;
	color: white;
}
.main-headline {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	line-height: 1.2;
}
.sub-headline {
	font-size: 1.2rem;
	font-weight: 300;
	margin-bottom: 2rem;
	opacity: 0.8;
}
.pain-points-container {
	position: relative;
	height: 300px;
	overflow: hidden;
	perspective: 1000px;
}
.pain-point {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	opacity: 0;
	transform: translateY(50%) rotateX(90deg);
	transition: all 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
	transform-origin: center bottom;
	backface-visibility: hidden;
}
.pain-point.previous {
	transform: translateY(-50%) rotateX(-90deg);
}
.pain-point.active {
	opacity: 1;
	transform: translateY(0) rotateX(0);
}
.pain-point.exit-top {
	opacity: 0;
	transform: translateY(-50%) rotateX(90deg);
}
.pain-point.exit-bottom {
	opacity: 0;
	transform: translateY(50%) rotateX(-90deg);
}
.pain-point-title {
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: #ffffff;
}
.pain-point-description {
	font-size: 0.9rem;
	color: rgba(255,255,255,0.7);
}
.solution-highlight {
	color: #ffd700;
	font-weight: bold;
	margin-top: 1rem;
	display: block;
}
.login-form {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 2rem;
	max-width: 500px;
	margin: 0 auto;
}
.login-header {
	margin-bottom: 2rem;
	text-align: center;
}
.login-header h1 {
	font-size: 2.5rem;
	margin-bottom: 0.5rem;
	color: var(--primary-color);
}
.login-header p {
	color: #6b7280;
}
.btn {
	width: 100%;
	padding: 0.46rem;
	background-color: var(--primary-color);
	color: white;
	border: none;
	border-radius: 20px!important;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}
.btn:hover {
	background-color: var(--secondary-color);
}
.form-footer {
	text-align: center;
	margin-top: 1rem;
}
.toggle-form {
	display: flex;
	justify-content: center;
	margin-bottom: 1.5rem;
}
.toggle-btn {
	background: none;
	border: none;
	color: #6b7280;
	margin: 0 0.5rem;
	cursor: pointer;
	font-weight: 600;
	position: relative;
}
.toggle-btn.active {
	color: var(--primary-color);
}
.toggle-btn.active::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: var(--primary-color);
}
.load-more-btn {
	background: rgba(255,255,255,0.2);
	color: white;
	border: none;
	padding: 10px 20px;
	border-radius: 5px;
	cursor: pointer;
	margin-top: 15px;
	transition: background 0.3s ease;
}
.load-more-btn:hover {
	background: rgba(255,255,255,0.3);
}
.auto-switch-indicator {
	display: flex;
	justify-content: center;
	margin-top: 15px;
}
.switch-dot {
	width: 10px;
	height: 10px;
	background-color: rgba(255,255,255,0.3);
	border-radius: 50%;
	margin: 0 5px;
	transition: all 0.3s ease;
	cursor: pointer;
}
.switch-dot.active {
	background-color: white;
	transform: scale(1.3);
}
@media (max-width: 768px) {
	.login-wrapper {
		flex-direction: column;
	}
	.login-image, .login-form {
		flex: none;
		max-width: 100%;
	}
	.layui-form-item .layui-input-inline {
		margin: auto!important;
	}
	.layui-hide-xs {
		display: block !important;
	}
}
.login-form {
	position: relative;
}
.login-form .layui-nav-item {
	position: absolute;
	top:1rem;
	right:1rem;
}
.admin-captcha{
	border-radius: 5px;
	margin-left: 5px;
}