:root {
	  --primary: #6cc26c;
	  --text: #222;
	  --bg: #f2f2f2;
	  --white: #fff;
	  --gray: #666;
	  --border: #ccc;
	}
	
	* {
	  box-sizing: border-box;
	  margin: 0;
	  padding: 0;
	}
	
	body {
	  font-family: 'Segoe UI', sans-serif;
	  background-color: var(--bg);
	  color: var(--text);
	  display: flex;
	  flex-direction: column;
	  min-height: 100vh;
	}
	
	header, footer {
	  background-color: #eee;
	  text-align: center;
	  padding: 1rem 0;
	}
	
	header img {
	  height: 35px;
	}
	
	main {
	  flex: 1;
	  display: flex;
	  justify-content: center;
	  align-items: center;
	  padding: 2rem;
	  background-color: var(--white);
	}
	
	.login-container {
	  display: flex;
	  gap: 2rem;
	  max-width: 1000px;
	  width: 100%;
	  background-color: var(--white);
	  padding: 2rem;
	  border-radius: 8px;
	  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
	  align-items: center;
	  justify-content: space-between;
	}
	
	form {
	  flex: 1;
	  max-width: 400px;
	}
	
	form h2 {
	  font-size: 1.8rem;
	  margin-bottom: 1.5rem;
	}
	
	label {
	  display: block;
	  margin-top: 1rem;
	  font-weight: bold;
	}
	
	input {
	  width: 100%;
	  padding: 0.6rem;
	  border: 1px solid var(--border);
	  border-radius: 4px;
	  margin-top: 0.4rem;
	}
	
	button {
	  margin-top: 1.5rem;
	  padding: 0.75rem;
	  width: 100%;
	  background-color: var(--primary);
	  color: var(--white);
	  border: none;
	  border-radius: 4px;
	  font-weight: bold;
	  cursor: pointer;
	}
	
	button:hover {
	  background-color: #5ab05a;
	}
	
	.small-text {
	  margin-top: 0.75rem;
	  font-size: 0.9rem;
	}
	
	.small-text a {
	  color: var(--text);
	  text-decoration: underline;
	}
	
	.logo-img {
	  max-width: 300px;
	}
	
	footer nav {
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  gap: 2rem;
	  padding: 1rem;
	  flex-wrap: wrap;
	}
	
	footer nav img {
	  height: 40px;
	  margin-right: 2rem;
	}
	
	
	footer nav a {
	  text-decoration: none;
	  color: var(--text);
	  position: relative;
	}
	
	footer nav a.active::after {
	  content: '';
	  position: absolute;
	  bottom: -5px;
	  left: 0;
	  width: 100%;
	  height: 2px;
	  background-color: var(--primary);
	}
	
	.footer-links {
		  display: flex;
		  gap: 2rem;
	}
	
	.footer-links a {
	  text-decoration: none;
	  color: var(--text);
	  position: relative;
	  font-size: 0.95rem;
	}
	
	.footer-links a.active::after {
	  content: '';
	  position: absolute;
	  bottom: -5px;
	  left: 0;
	  width: 100%;
	  height: 2px;
	  background-color: var(--primary);
	}
