/* 简洁商务风格登录页面 */
.universal-login-container {
	min-height: 100vh;
	background: #f8fafc;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.login-card-wrapper {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}

.login-card {
	border-radius: 16px !important;
	overflow: hidden;
	background: white;
	min-height: 600px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
}

/* 左侧商务图片区域 */
.visual-section {
	position: relative;
	overflow: hidden;
	padding: 0;
}

.business-image-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 600px;
}

.business-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.image-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(30, 64, 175, 0.92) 0%, rgba(30, 58, 138, 0.88) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
}

.overlay-content {
	text-align: center;
	color: white;
	padding: 40px;
	max-width: 400px;
}

.overlay-title {
	font-size: 36px;
	font-weight: 700;
	margin: 0;
	letter-spacing: -0.5px;
	line-height: 1.2;
}

.overlay-subtitle {
	font-size: 16px;
	margin-top: 16px;
	opacity: 0.95;
	font-weight: 400;
	letter-spacing: 2px;
}

/* 右侧表单区域 */
.form-section {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 60px 50px;
	background: #ffffff;
}

.form-wrapper {
	width: 100%;
	max-width: 400px;
}

.form-header {
	text-align: left;
	margin-bottom: 40px;
}

.form-title {
	font-size: 28px;
	font-weight: 700;
	color: #0f172a;
	margin: 0;
	letter-spacing: -0.5px;
}

.form-subtitle {
	font-size: 14px;
	color: #64748b;
	margin: 8px 0 0;
	font-weight: 400;
}

.login-form {
	margin-top: 0;
}

.input-group {
	margin-bottom: 24px;
}

.input-label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: #334155;
	margin-bottom: 8px;
}

.modern-input >>> .v-input__control {
	border-radius: 8px !important;
}

.modern-input >>> .v-text-field__details {
	padding: 0 4px;
}

.modern-input >>> fieldset {
	border-color: #e2e8f0 !important;
	border-width: 1.5px !important;
	transition: all 0.3s ease;
}

.modern-input >>> .v-input--is-focused fieldset {
	border-color: #1e40af !important;
	border-width: 2px !important;
}

.modern-input >>> input {
	font-size: 14px;
	color: #1e293b;
	padding-left: 8px;
}

.modern-input >>> input::placeholder {
	color: #94a3b8;
	opacity: 1;
}

.modern-input >>> .v-input__prepend-inner {
	margin-top: 10px !important;
	margin-right: 8px !important;
}

.modern-input >>> .v-input__append-inner {
	margin-top: 10px !important;
}

.form-options {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 28px;
}

.remember-checkbox >>> .v-label {
	font-size: 14px;
	color: #475569;
}

.remember-checkbox >>> .v-icon {
	color: #1e40af !important;
}

.forgot-link {
	font-size: 14px;
	color: #1e40af;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
}

.forgot-link:hover {
	color: #1e3a8a;
}

.modern-alert {
	border-radius: 8px !important;
	font-size: 14px;
}

.login-btn {
	border-radius: 8px !important;
	height: 48px !important;
	font-size: 15px !important;
	font-weight: 600 !important;
	text-transform: none !important;
	letter-spacing: 0.3px !important;
	background: #1e40af !important;
	color: white !important;
	transition: all 0.3s ease;
}

.login-btn:hover {
	background: #1e3a8a !important;
}

.btn-text {
	font-size: 15px;
	font-weight: 600;
}

.register-section {
	text-align: center;
}

.register-text {
	font-size: 14px;
	color: #64748b;
}

.register-link {
	color: #1e40af;
	text-decoration: none;
	font-weight: 600;
	margin-left: 4px;
	transition: color 0.3s ease;
}

.register-link:hover {
	color: #1e3a8a;
	text-decoration: underline;
}

/* 响应式设计 */
@media (max-width: 960px) {
	.visual-section {
		display: none;
	}
	
	.form-section {
		padding: 40px 24px;
	}
	
	.login-card {
		min-height: auto;
	}
}

@media (max-width: 600px) {
	.universal-login-container {
		padding: 16px;
	}
	
	.login-card {
		border-radius: 12px !important;
	}
	
	.form-wrapper {
		max-width: 100%;
	}
	
	.form-section {
		padding: 32px 20px;
	}
	
	.form-title {
		font-size: 24px;
	}
}
