:root {
	--primary-green: #38761d;
	--primary-yellow: #fcd34d;
	--light-bg: #f8f9fa;
	--text-dark: #212529;
	--text-secondary: #6c757d;
	--border-color: #dee2e6;
}

body {
	font-family: "Poppins", sans-serif;
	background-color: var(--light-bg);
	color: var(--text-dark);
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	margin: 0;
}

.login-container {
	width: 100%;
	max-width: 420px;
	padding: 20px;
}

.back-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 1.5rem;
	text-decoration: none;
	color: var(--text-dark);
	font-weight: 500;
}
.back-link:hover {
	color: var(--primary-green);
}

.login-card {
	background-color: #ffffff;
	padding: 2.5rem;
	border-radius: 16px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
	text-align: center;
}

.icon-container {
	width: 60px;
	height: 60px;
	background-color: var(--primary-green);
	border-radius: 50%;
	margin: 0 auto 1.5rem auto;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #ffffff;
	font-size: 1.8rem;
}

h1 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.subtitle {
	color: var(--text-secondary);
	margin-bottom: 2rem;
	font-size: 0.9rem;
}

.form-group {
	margin-bottom: 1.25rem;
	text-align: left;
}

.form-group label {
	display: block;
	font-weight: 600;
	margin-bottom: 0.5rem;
	font-size: 0.9rem;
}

.input-wrapper {
	position: relative;
}

.form-group input {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid var(--border-color);
	border-radius: 8px;
	font-size: 1rem;
	box-sizing: border-box; /* Important for padding */
}
.form-group input:focus {
	outline: none;
	border-color: var(--primary-green);
	box-shadow: 0 0 0 2px rgba(56, 118, 29, 0.2);
}

.password-toggle {
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
	color: var(--text-secondary);
	cursor: pointer;
}

.btn-login {
	width: 100%;
	padding: 14px;
	border: none;
	border-radius: 8px;
	background-color: var(--primary-yellow);
	color: var(--text-dark);
	font-weight: 700;
	font-size: 1rem;
	cursor: pointer;
	transition: background-color 0.3s;
	margin-top: 0.5rem;
}
.btn-login:hover {
	background-color: #fbc72d;
}

.extra-links {
	margin-top: 1.5rem;
	font-size: 0.9rem;
}
.extra-links a {
	color: var(--primary-green);
	text-decoration: none;
	font-weight: 500;
}
.extra-links a:hover {
	text-decoration: underline;
}

.support-link {
	text-align: center;
	margin-top: 2rem;
	font-size: 0.85rem;
	color: var(--text-secondary);
}
.support-link a {
	color: var(--primary-green);
	text-decoration: none;
	font-weight: 500;
}
