body, html {
	height: 100%;
	margin: 0;
	overflow: hidden
}
.login-wrapper {
	background: var(--bg-page);
	display: flex;
	height: 100vh;
	width: 100vw
}
.login-left {
	display: flex;
	flex: 1.3;
	flex-direction: column;
	justify-content: center;
	overflow: hidden;
	padding: 60px 80px;
	position: relative
}
.login-video-bg {
	object-fit: cover;
	z-index: 0
}
.login-left-overlay, .login-video-bg {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%
}
.login-left-overlay {
	background: linear-gradient(135deg, rgba(79, 70, 229, .85), rgba(17, 24, 39, .85));
	z-index: 1
}
.login-left-content {
	max-width: 600px;
	position: relative;
	z-index: 2
}
.login-right {
	align-items: center;
	background: var(--bg-card);
	box-shadow: -10px 0 30px rgba(0, 0, 0, .05);
	display: flex;
	flex: 1;
	justify-content: center;
	min-width: 450px;
	padding: 40px;
	position: relative;
	z-index: 5
}
.login-form-container {
	max-width: 400px;
	width: 100%
}
.login-header {
	margin-bottom: 40px;
	text-align: center
}
.login-header h2 {
	color: var(--text-heading);
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 12px
}
.login-header p {
	color: var(--text-muted);
	font-size: 15px;
	margin: 0
}
.btn-google {
	align-items: center;
	background: #fff;
	border: 1px solid var(--border-color);
	border-radius: var(--border-radius-md);
	box-shadow: var(--shadow-sm);
	color: var(--text-heading);
	cursor: pointer;
	display: flex;
	font-size: 16px;
	font-weight: 600;
	gap: 12px;
	justify-content: center;
	padding: 14px 24px;
	transition: all .2s ease;
	width: 100%
}
.btn-google:hover {
	background: #f8fafc;
	box-shadow: var(--shadow-card);
	transform: translateY(-2px)
}
.login-footer {
	margin-top: 40px;
	text-align: center
}
.login-footer p {
	color: var(--text-muted);
	font-size: 13px;
	line-height: 1.6
}
.login-footer a {
	color: var(--bs-primary);
	font-weight: 500
}
@media (max-width:991px) {
	.login-right {
		min-width: unset;
		width: 100%
	}
}