body {
	background: linear-gradient(135deg, #a8d0e6 0%, #f0f4f8 100%);
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	height: 100vh;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #1f2937;
}
.login-container {
	background: white;
	border-radius: 1rem;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	max-width: 900px;
	width: 100%;
	display: flex;
	overflow: hidden;
}
.login-info {
	background: #4f8ef7;
	color: white;
	flex: 1;
	padding: 3rem 2.5rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
}
.login-info h2 {
	font-weight: 700;
	margin-bottom: 1rem;
	font-size: 2.5rem;
	letter-spacing: 0.03em;
}
.login-info p {
	font-size: 1.1rem;
	line-height: 1.6;
	margin-bottom: 2rem;
	color: #d0defb;
}
.login-info .footer a {
	color: #cbd7ff;
	text-decoration: none;
	font-weight: 500;
}
.login-info .footer a:hover {
	text-decoration: underline;
}
.login-logo img {
	max-height: 70px;
	margin-bottom: 1.5rem;
	filter: drop-shadow(0 0 2px rgba(0,0,0,0.1));
}
.login-form {
	flex: 1;
	padding: 3rem 3rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.login-form h3 {
	color: #334155;
	margin-bottom: 1.5rem;
	font-weight: 700;
	font-size: 1.8rem;
	letter-spacing: 0.02em;
}
.form-control {
	border-radius: 50px !important;
	border: 1.5px solid #cbd5e1 !important;
	padding: 0.75rem 1.5rem !important;
	font-size: 1rem !important;
	transition: border-color 0.3s ease;
}
.form-control:focus {
	border-color: #3b82f6 !important;
	box-shadow: 0 0 8px rgba(59, 130, 246, 0.3) !important;
	outline: none !important;
}
.input-group-text {
	background: #e0e7ff !important;
	border-radius: 50px 0 0 50px !important;
	border: none !important;
	color: #3b82f6 !important;
	font-size: 1.2rem;
	padding: 0 1.25rem;
}
.btn-primary {
	background: #3b82f6;
	border: none;
	border-radius: 50px;
	padding: 0.75rem;
	font-weight: 600;
	font-size: 1.1rem;
	transition: background-color 0.3s ease, transform 0.2s ease;
	box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}
.btn-primary:hover {
	background: #2563eb;
	transform: scale(1.05);
	box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
}
.footer-link {
	text-align: center;
	margin-top: 1rem;
}
.footer-link a {
	color: #64748b;
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 500;
}
.footer-link a:hover {
	text-decoration: underline;
	color: #3b82f6;
}
.alert-info {
	background-color: #bfdbfe;
	border-color: #93c5fd;
	color: #1e40af;
	border-radius: 8px;
	padding: 0.75rem 1rem;
	font-size: 0.9rem;
	margin-bottom: 1rem;
}
@media (max-width: 768px) {
	.login-container {
		flex-direction: column;
		max-width: 400px;
		border-radius: 1rem;
	}
	.login-info {
		padding: 2rem 2rem;
		text-align: center;
		border-radius: 1rem 1rem 0 0;
	}
	.login-form {
		padding: 2rem 2rem;
	}
}