/* admin_login.css */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #f5f8f6;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.login-container {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 340px;
  text-align: center;
}

h2 {
  color: #184f37;
  margin-bottom: 24px;
  font-weight: 600;
}

form {
  display: flex;
  flex-direction: column;
}

label {
  text-align: left;
  margin: 8px 0 4px;
  color: #333;
  font-weight: 500;
}

input[type="text"],
input[type="password"] {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
}

button {
  background-color: #184f37;
  color: #fff;
  border: none;
  padding: 10px;
  margin-top: 16px;
  border-radius: 8px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s ease;
}

button:hover {
  background-color: #22694d;
}

.error {
  color: red;
  margin-bottom: 10px;
  font-size: 14px;
}
