/* Container for proper layout and breathing room */
.login-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	max-width: 400px; /* Wider area for better button proportion */
	/* margin: 40px auto; */
	padding: 20px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	border-radius: 10px;
	background-color: #fff;
}

/* Stack buttons evenly */
.login-buttons {
	display: flex;
	flex-direction: column;
	width: 100%;
	gap: 14px; /* consistent vertical spacing */
	margin-bottom: 25px; /* space before footer or text below */
}

/* Main login button (primary) */
.login-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	font-size: 16px;
	font-weight: 600;
	border: none;
	border-radius: 8px;
	color: #fff;
	padding: 15px 20px;
	background-color: #007bff;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
	transition: all 0.25s ease-in-out;
}

.login-btn:hover {
	background-color: #0069d9;
	transform: translateY(-2px);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Shared social login button styles */
.social-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	font-size: 16px;
	font-weight: 600;
	border: none;
	border-radius: 8px;
	color: #fff;
	text-decoration: none;
	padding: 15px 20px;
	cursor: pointer;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
	transition: all 0.25s ease-in-out;
}
/* Register button */
.register-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	font-size: 15px;
	font-weight: 600;
	border: none;
	border-radius: 6px;
	color: #fff;
	padding: 14px 16px;
	background-color: #28a745;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
	text-decoration: none;
	transition: all 0.25s ease-in-out;
}
.register-btn:hover {
	background-color: #218838;
	transform: translateY(-1px);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
	color: #fff;
}
/* Consistent icon spacing */
.social-btn svg {
	margin-right: 10px;
	fill: #fff;
	width: 18px;
	height: 18px;
}

/* Hover effects */
.social-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
	text-decoration: none;
	color: #fff;
}

/* Individual platform colors */
.gl-btn {
	background-color: #db4437;
}
.gl-btn:hover {
	background-color: #c33c30;
}

.fb-btn {
	background-color: #507cbf;
}
.fb-btn:hover {
	background-color: #426fb4;
}

/* Footer / Note styling */
.footer-note {
	text-align: center;
	color: #114a79;
	font-weight: 600;
	font-size: 15px;
	margin-top: 20px;
}

/* Responsive for smaller devices */
@media (max-width: 576px) {
	.login-container {
		max-width: 90%;
		padding: 16px;
	}
	.login-btn,
	.social-btn {
		font-size: 15px;
		padding: 13px 16px;
	}
	.social-btn svg {
		width: 16px;
		height: 16px;
		margin-right: 8px;
	}
}
