* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
  }
  
  body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, #71c55b, #92e27a); /* Verde claro degradado */
    background-size: cover;
  }
  
  .login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }
  
  .login-box {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 40px 30px;
    width: 320px;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    color: #005200; /* Texto general verde oscuro */
    border: 2px solid rgba(0, 82, 0, 0.3); /* Borde verde translúcido */
  }
  
  .login-box h2 {
    margin-bottom: 20px;
    font-size: 24px;
    letter-spacing: 2px;
    color: #005200; /* Título en verde oscuro */
  }
  
  .login-box input {
    width: 100%;
    padding: 12px 15px;
    margin: 10px 0;
    border: 2px solid #4ea93b; /* Verde medio */
    border-radius: 8px;
    outline: none;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.8); /* Fondo blanco translúcido */
    color: #000; /* Texto negro */
  }
  
  .login-box input::placeholder {
    color: #000; /* Placeholder en negro */
  }
  
  .login-box button {
    width: 100%;
    padding: 12px;
    margin-top: 20px;
    border: none;
    border-radius: 30px;
    background: #007000; /* Verde oscuro */
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .login-box button:hover {
    background: #258d19; /* Verde fuerte */
  }
  
  .forgot-password {
    margin-top: 15px;
    font-size: 12px;
    color: #005c00; /* Verde oscuro */
  }
  
  .forgot-password a {
    color: #007000; /* Verde intermedio */
    text-decoration: none;
    font-weight: bold;
  }
  
  .forgot-password a:hover {
    text-decoration: underline;
  }
  
  .login-logo {
    width: 90px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 50%; /* Circular */
    border: 3px solid #4ea93b; /* Verde medio */
  }
  