/* Build: 2026-04-04 11:58 - Final Production Layout */
:root {
	--primary: #2563eb;
	--primary-hover: #1d4ed8;
	--primary-soft: rgba(37, 99, 235, 0.08);
	--bg-gradient: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #3b82f6 100%);
	--text-main: #1e293b;
	--text-muted: #64748b;
	--border-color: #cbd5e1;
	--radius: 0.75rem;
}

body {
	font-family: 'Inter', system-ui, -apple-system, sans-serif;
	color: var(--text-main);
	margin: 0;
	padding: 0;
	overflow: hidden; /* Fix shadow bleed and scrollbars */
}

.split-container {
	width: 100vw;
	height: 100vh;
	overflow: hidden;
}

.info-section {
	background: var(--bg-gradient);
	min-height: 100vh;
	position: relative;
	overflow: hidden;
}

/* Fix shadow bleed icon circles */
.icon-circle {
	width: 60px;
	height: 60px;
	background: rgba(255, 255, 255, 0.15);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(8px);
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.info-content {
	max-width: 550px;
	z-index: 2;
}

/* Local Branding Logos */
.brand-logos {
	margin-top: 3rem;
}

.brand-logo-item img {
	max-height: 85px;
	width: auto;
	filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
	transition: transform 0.3s;
}

.brand-logo-item img:hover {
	transform: scale(1.05);
}

/* Outlined Floating Labels - Fixed Overlap */
.form-floating-outlined {
	position: relative;
	margin-bottom: 1.25rem;
}

.form-floating-outlined .form-control {
	height: 60px;
	padding: 1.25rem 1rem 0.5rem 1rem;
	border: 1px solid var(--border-color);
	border-radius: 8px;
	background: transparent;
	font-size: 1rem;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.form-floating-outlined .form-control::placeholder {
	color: transparent;
}

.form-floating-outlined .form-control:focus {
	border-color: var(--primary);
	box-shadow: 0 0 0 4px var(--primary-soft);
	outline: none;
}

.form-floating-outlined label {
	position: absolute;
	top: 50%;
	left: 1rem;
	transform: translateY(-50%);
	background: transparent;
	padding: 0 0.2rem;
	color: var(--text-muted);
	font-weight: 400;
	pointer-events: none;
	transition: transform 0.2s, top 0.2s, font-size 0.2s, color 0.2s, background-color 0.2s;
	z-index: 10;
}

.form-floating-outlined .form-control:focus~label,
.form-floating-outlined .form-control:not(:placeholder-shown)~label {
	top: 0;
	transform: translateY(-50%) scale(0.85);
	background-color: white;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--primary);
	left: 0.8rem;
}

.btn-toggle-view {
	position: absolute;
	right: 1rem;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	color: var(--text-muted);
	cursor: pointer;
	z-index: 15;
	padding: 5px;
}

.btn-access {
	background: var(--primary) !important;
	color: white !important;
	border: none !important;
	border-radius: 8px !important;
	transition: all 0.2s;
}

.btn-access:hover {
	background: var(--primary-hover) !important;
	transform: translateY(-1px);
}

.form-section {
	background: white;
	min-height: 100vh;
}

/* Footer Fix: Separate styling for white/blue side or transparent */
.login-footer {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 10;
	background: transparent;
	pointer-events: none;
}

.footer-content {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 1.5rem;
	width: 100%;
	pointer-events: auto;
}

/* Responsive Hide Info Section Footer Background */
@media (max-width: 767.98px) {
	.split-container {
		height: auto;
		overflow-y: auto;
	}
	.info-section {
		min-height: auto;
		padding: 4rem 2rem !important;
	}
	.form-section {
		min-height: auto;
		padding-bottom: 5rem !important;
	}
	.login-footer {
		position: relative;
		background: #f8fafc;
		border-top: 1px solid var(--border-color);
	}
}

.credentials-box {
	background: var(--primary-soft);
	border: 1px solid var(--border-color);
}

.nav-pills .nav-link {
	color: var(--text-muted);
	transition: all 0.2s ease;
}

.nav-pills .nav-link.active {
	background-color: var(--primary) !important;
	box-shadow: 0 4px 6px -1px var(--primary-soft);
}

.letter-spacing-1 {
	letter-spacing: 1px;
}