/* =========================
   Login Page Only
========================= */

.login-page {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f6f7fb;
}

.login-card {
	width: 100%;
	max-width: 420px;
	padding: 28px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
	text-align: center;
}

.login-title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 8px;
	color: #111;
}

.login-desc {
	font-size: 13px;
	color: #6b7280;
	margin-bottom: 18px;
}

/* Google Button */
.btn-google {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;

	width: 100%;
	padding: 12px 14px;

	border-radius: 10px;
	border: 1px solid #e5e7eb;

	background: #fff;
	color: #111;

	font-weight: 500;
	text-decoration: none;

	transition: all 0.2s ease;
}

.btn-google:hover {
	background: #f9fafb;
	border-color: #d1d5db;
	transform: translateY(-1px);
}

.btn-google:active {
	transform: translateY(0);
}

.btn-google img {
	width: 20px;
	height: 20px;
}