body {
	background: #f3f7f3;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.login-card {
	max-width: 420px;
	width: 100%;
	background: #fff;
	border-radius: 20px;
	padding: 50px;
	box-shadow: 0 12px 35px rgba(0,0,0,0.08);
	text-align: center;
}

.login-card img {
	height: 60px;
	margin-bottom: 20px;
}

.form-label {
	font-weight: 600;
	text-align: left;
	width: 100%;
	margin-bottom: 6px;
	color: #333;
}

.form-control {
	border-radius: 12px;
	height: 48px;
}

.btn-auth {
	background: #7ED957;
	border-color: #7ED957;
	color: #fff;
	width: 100%;
	height: 48px;
	font-size: 16px;
	border-radius: 12px;
	transition: .2s;
}

.btn-auth:hover {
	background: #74cf52;
	color: #fff;
}

.footer-copy {
	margin-top: 20px;
	text-align: center;
	font-size: 14px;
	color: #888;
}