html, body {
	margin: 0;
	padding: 0;
	height: 100%;
	width: 100%;
}

.landing-container {
	height: 100vh; 
	width: 100vw;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	background: linear-gradient(135deg, #f9fafb, #e0f2fe);
	font-family: 'Segoe UI', Roboto, sans-serif;
}

.landing-content {
	text-align: center;
	color: #1e293b;
	max-width: 600px;
	padding: 2rem;
}
	.landing-content h1 {
		font-size: 1.7rem;
		font-weight: 600;
		color: #333e4f;
		margin-bottom: 2rem;
		letter-spacing: 0.5px;
	}

	.landing-content h2 {
		font-size: 1.25rem;
		font-weight: 400;
		color: #64748b;
		margin-top: -1rem;
		margin-bottom: 2rem;
	}


.btn-primary {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	font-size: 1.1rem;
	font-weight: 500;
	color: white;
	background: linear-gradient(135deg, #3b82f6, #60a5fa);
	border: none;
	border-radius: 0.5rem;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	box-shadow: 0 4px 10px rgba(59,130,246,0.3);
}

	.btn-primary:hover {
		transform: translateY(-2px);
		box-shadow: 0 6px 14px rgba(59,130,246,0.4);
	}
