 body {
      font-family: 'Open Sans', sans-serif;
      background: #f6f6f6;
      margin: 0;
      padding: 0;
    }
    .header {
  background: #4a7c59;   /* Verde */
  padding: 15px 0;
  color: white;
}

    /* Estilo del formulario */
    #login {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 100vh;
      background: linear-gradient(135deg, #4a7c59, #74b49b);
      color: #fff;
    }

    #login form {
      background: white;
      color: #055316;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
      width: 300px;
      text-align: center;
    }

    #login input {
      width: 90%;
      padding: 10px;
      margin: 10px 0;
      border: 1px solid #ccc;
      border-radius: 5px;
      font-size: 16px;
    }

    #login button {
      background: #4a7c59;
      color: white;
      border: none;
      padding: 10px 20px;
      border-radius: 5px;
      cursor: pointer;
      font-weight: bold;
    }

    #login button:hover {
      background: #3c6e47;
    }

    .password-container {
      position: relative;
      width: 90%;
      margin: auto;
    }

    .password-container i {
      position: absolute;
      right: 10px;
      top: 12px;
      cursor: pointer;
      color: #05790b;
    }

    #mensaje {
      color: red;
      font-size: 14px;
      margin-top: 10px;
    }

    /* Ocultamos el contenido hasta que se loguee */
    #contenido {
      display: none;
      padding: 20px;
    }
    .footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #101110; /* También verde si deseas */
  color: white;
  text-align: center;
  padding: 10px 0;
  font-size: 14px;
}
.iconopdf {
  width: 55px;
  height: auto;
  display: block;
  margin: 0 auto;
  cursor: pointer;
  transition: transform 0.2s;
}

.iconopdf:hover {
  transform: scale(1.15);
}
main {
  margin-bottom: 120px; /* Ajusta la distancia según necesites */
}
