/* ═══════════════════════════════════════════════════════════════
   BiLoads Login Page — Split-Screen Layout
   Left: Welcome panel (dark)  |  Right: Login form (light)
   ═══════════════════════════════════════════════════════════════ */

.page-login-v3 .page {
	background: #f5f5f5;
	min-height: 100vh;
	padding: 0 !important;
	margin: 0 !important;
}

/* ── Split Container ──────────────────────────────────────────── */
.login-split {
	display: flex;
	min-height: 100vh;
	width: 100%;
}

/* ── Left: Welcome Panel ──────────────────────────────────────── */
.login-welcome {
	flex: 1;
	background: #141414;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	padding: 60px;
}

.login-welcome-content {
	position: relative;
	z-index: 2;
	max-width: 440px;
}

.login-welcome-logo {
	width: 60px;
	height: auto;
	margin-bottom: 30px;
	filter: brightness(100);
}

.login-welcome h1 {
	color: #ffffff;
	font-size: 2.6rem;
	font-weight: 300;
	line-height: 1.2;
	margin-bottom: 20px;
}

.login-welcome h1 strong {
	font-weight: 700;
	background: linear-gradient(135deg, #e53935, #ff5252);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.login-welcome p {
	color: #a0a0a0;
	font-size: 1.05rem;
	line-height: 1.7;
	margin-bottom: 0;
}

/* Decorative Elements */
.login-welcome-decoration {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 1;
}

.deco-circle {
	position: absolute;
	border-radius: 50%;
}

.deco-1 {
	width: 300px;
	height: 300px;
	background: linear-gradient(135deg, rgba(229, 57, 53, 0.2), rgba(229, 57, 53, 0.05));
	bottom: -80px;
	right: -60px;
}

.deco-2 {
	width: 180px;
	height: 180px;
	background: linear-gradient(135deg, rgba(229, 57, 53, 0.15), transparent);
	bottom: 100px;
	right: 80px;
}

.deco-3 {
	width: 120px;
	height: 120px;
	background: rgba(229, 57, 53, 0.08);
	top: 60px;
	right: 40px;
}

/* ── Right: Login Form ────────────────────────────────────────── */
.login-form-side {
	flex: 0 0 480px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #ffffff;
	padding: 60px;
}

.login-form-container {
	width: 100%;
	max-width: 360px;
}

.login-form-header {
	margin-bottom: 35px;
}

.login-form-logo {
	width: 50px;
	height: auto;
	margin-bottom: 20px;
}

.login-form-header h2 {
	color: #1a1a1a;
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 6px;
}

.login-form-header .text-muted {
	color: #888 !important;
	font-size: 0.9rem;
}

/* Form Controls */
.login-form-side .form-group {
	margin-bottom: 20px;
}

.login-form-side .form-group label {
	color: #555 !important;
	font-weight: 500;
	font-size: 0.85rem;
	margin-bottom: 6px;
}

.login-form-side .form-control {
	background-color: #f8f9fa !important;
	border: 1px solid #e0e0e0 !important;
	color: #1a1a1a !important;
	border-radius: 10px !important;
	padding: 12px 15px;
	font-size: 0.95rem;
	transition: all 0.3s ease;
}

.login-form-side .form-control:focus {
	border-color: #e53935 !important;
	box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.12) !important;
	background-color: #fff !important;
}

.login-form-side .form-control::placeholder {
	color: #bbb;
}

.login-form-side .input-group-text {
	background-color: #f8f9fa !important;
	border: 1px solid #e0e0e0 !important;
	border-left: none !important;
	color: #888 !important;
	border-radius: 0 10px 10px 0 !important;
	cursor: pointer;
	transition: color 0.3s ease;
}

.login-form-side .input-group-text:hover {
	color: #e53935 !important;
}

.login-form-side .input-group-append .form-control {
	border-radius: 10px 0 0 10px !important;
}

/* Button */
.login-form-side .btn-primary {
	background: linear-gradient(135deg, #e53935, #ff5252) !important;
	border: none !important;
	border-radius: 10px !important;
	padding: 13px !important;
	font-size: 1rem !important;
	font-weight: 600 !important;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	box-shadow: 0 4px 16px rgba(229, 57, 53, 0.35) !important;
	transition: all 0.3s ease !important;
}

.login-form-side .btn-primary:hover {
	box-shadow: 0 6px 24px rgba(229, 57, 53, 0.55) !important;
	transform: translateY(-2px);
}

/* Alert */
.login-form-side .alert-danger {
	background-color: rgba(229, 57, 53, 0.08);
	border: 1px solid rgba(229, 57, 53, 0.2);
	color: #e53935;
	border-radius: 10px;
}

/* Footer */
.login-footer {
	text-align: center;
	margin-top: 30px;
}

.login-footer .text-muted {
	color: #bbb !important;
}

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 991.98px) {
	.login-split {
		flex-direction: column;
	}

	.login-welcome {
		padding: 40px 30px;
		min-height: auto;
	}

	.login-welcome h1 {
		font-size: 2rem;
	}

	.login-welcome-decoration {
		display: none;
	}

	.login-form-side {
		flex: 1;
		padding: 40px 30px;
	}

	.login-form-container {
		max-width: 400px;
	}
}

@media (max-width: 479.98px) {
	.login-welcome {
		padding: 30px 20px;
	}

	.login-welcome h1 {
		font-size: 1.6rem;
	}

	.login-form-side {
		padding: 30px 20px;
	}
}

/* ── Animation ────────────────────────────────────────────────── */
.login-form-container {
	animation: fadeInRight 0.5s ease-out;
}

.login-welcome-content {
	animation: fadeInLeft 0.6s ease-out;
}

@keyframes fadeInRight {
	from {
		opacity: 0;
		transform: translateX(20px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes fadeInLeft {
	from {
		opacity: 0;
		transform: translateX(-20px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}