/* Colores inspirados en el logo: verde (#007F00), negro (#000), blanco (#fff) */

* {
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
}

body {
  background-color: #f4f4f4;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.login-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  width: 100%;
}

.login-box {
  background-color: #fff;
  padding: 2rem;
  max-width: 400px;
  width: 100%;
  border: 2px solid #007F00;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 127, 0, 0.2);
  text-align: center;
}

.logo {
  width: 180px;
  margin-bottom: 1rem;
}

h1 {
  font-size: 1.5rem;
  color: #000;
  margin-bottom: 1.5rem;
}

form {
  text-align: left;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
  color: #333;
}

input {
  width: 100%;
  padding: 0.75rem;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

button {
  width: 100%;
  background-color: #007F00;
  color: #fff;
  padding: 0.75rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #005c00;
}

.forgot-password {
  margin-top: 1rem;
  text-align: center;
}

.forgot-password a {
  color: #007F00;
  font-size: 0.9rem;
  text-decoration: none;
}

.forgot-password a:hover {
  text-decoration: underline;
}
