body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f5f7f9;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.login-container {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 40px;
  width: 320px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.logo {
  display: block;
  margin: 0 auto 30px;
  width: 64px;
  height: 64px;
  background-color: #2e7d32;
  color: #ffffff;
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  line-height: 64px;
  border-radius: 8px;
}

h2 {
  text-align: center;
  color: #333333;
  margin-bottom: 24px;
}

label {
  display: block;
  margin-bottom: 8px;
  color: #555555;
  font-size: 14px;
}

input[type="text"],
input[type="password"] {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 20px;
  border: 1px solid #cccccc;
  border-radius: 4px;
  font-size: 14px;
}

button {
  width: 100%;
  padding: 12px;
  background-color: #2e7d32;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  background-color: #27632a;
}

.footer {
  margin-top: 20px;
  text-align: center;
  font-size: 12px;
  color: #888888;
} 