/* File: login.css */

body {
  background-color: #e9f5ee;
  font-family: 'Poppins', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.login-box {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 128, 0, 0.1);
  width: 100%;
  max-width: 400px;
}

.login-box h2 {
  color: #2d6a4f;
  margin-bottom: 24px;
  text-align: center;
}

.login-box label {
  color: #333;
  font-weight: 500;
  font-size: 14px;
}

.login-box input[type="email"],
.login-box input[type="password"] {
  width: 100%;
  padding: 10px 14px;
  margin-top: 6px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-sizing: border-box;
  font-size: 14px;
}

.login-box button {
  width: 100%;
  padding: 12px;
  background-color: #2d6a4f;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.login-box button:hover {
  background-color: #1b4332;
}

.login-box p {
  text-align: center;
  color: red;
  margin-bottom: 16px;
  font-size: 14px;
}