﻿


.login-container {
	background: #ffffff;
	width: 100%;
	max-width: 420px;
	padding: 40px 35px;
	border-radius: 18px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
	text-align: center;
	animation: fadeIn 0.7s ease-out;
	/* small side margin so it doesn’t touch edges on mobile */
	margin: 0 20px;
}

	.login-container h2 {
		margin-bottom: 15px;
		font-size: 28px;
		font-weight: 600;
		color: #333;
	}

.subtitle {
	color: #555;
	font-size: 14px;
	margin-bottom: 35px;
}

.btn-google {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 14px 18px;
	background: #ffffff;
	border: 1px solid #d1d1d1;
	border-radius: 8px;
	font-size: 16px;
	color: #444;
	text-decoration: none;
	font-weight: 500;
	transition: 0.3s;
}

	.btn-google:hover {
		background: #f3f3f3;
	}

	.btn-google img {
		width: 20px;
		margin-right: 10px;
	}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Mobile Adjustments */
@media (max-width: 480px) {
	.login-container {
		padding: 28px 22px;
	}

		.login-container h2 {
			font-size: 24px;
		}
}
