:root {
	--primary-color: #014ca1;
}

body {
	font-family: 'Poppins', sans-serif;
	background: url('https://images.unsplash.com/photo-1507838153414-b4b713384a76?auto=format&fit=crop&w=1350&q=80') no-repeat center center fixed;
	background-size: cover;
	position: relative;
	margin: 0;
	padding: 0;
}

.background-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.3); /* Soft dark overlay */
	z-index: 0;
}

.login-container {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 1;
	padding: 20px;
}

.login-card {
	width: 100%;
	max-width: 400px;
	border-radius: 1rem;
	background: rgba(255, 255, 255, 0.85); /* Light transparent white */
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	border: 0;
	backdrop-filter: blur(10px); /* Frosted glass effect */
	-webkit-backdrop-filter: blur(10px); /* Safari support */
	overflow: hidden;
}

.login-header {
	background-color: var(--primary-color);
	color: white;
	border-top-left-radius: 1rem;
	border-top-right-radius: 1rem;
	padding: 2rem;
	text-align: center;
}

.login-header .icon {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.btn-custom {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
	color: white;
	padding: 0.75rem;
	font-weight: 600;
	border-radius: 0.5rem;
	transition: background-color 0.3s ease;
}

.btn-custom:hover {
	background-color: #013b80;
	color: white;
}

.separator {
	display: flex;
	align-items: center;
	text-align: center;
	color: #888;
	font-size: 0.85rem;
	position: relative;
	margin-top: 1rem;
	margin-bottom: 1rem;
}

.separator::before,
.separator::after {
	content: "";
	flex: 1;
	height: 1px;
	background: #ddd;
	margin: 0 10px;
}

.google-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px;
	background-color: white;
	border: 1px solid #ddd;
	border-radius: 0.5rem;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.google-btn:hover {
	background-color: #f5f5f5;
}

.google-btn img {
	height: 20px;
	margin-right: 10px;
}

