 /* Reset */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Arial, sans-serif;
    }

    /* Body Styling */
    body {
      /*background-color: #1a1a1a;*/
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100vh;
      /*background: linear-gradient(135deg, #006ba6 0%, #ed8b00 50%, #97d700 100%);*/

    }


    body::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('../imgs/fondo.jpg'); /* Ruta de la imagen */
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        /*filter: blur(1px); */  /* Ajusta el nivel de difuminado */
        /*opacity: 0.5 */
        z-index: -1; /* Envía el fondo detrás del contenido */
    }


    /* Form Container */
    .login-container {
      background: #2b2b2b;
      border-radius: 10px;
      padding: 40px 30px;
      width: 100%;
      max-width: 400px;
      box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
      text-align: center;
    }

    /* Title */
    .login-title {
      font-size: 24px;
      margin-bottom: 20px;
      color: #97d700;
      font-weight: bold;
    }

    /* Input Fields */
    .login-input {
      width: 100%;
      padding: 15px;
      margin: 10px 0;
      border: none;
      border-radius: 5px;
      background-color: #1a1a1a;
      color: #fff;
      font-size: 16px;
    }

    /* Button */
    .login-button {
      width: 100%;
      padding: 15px;
      margin: 20px 0;
      border: none;
      border-radius: 5px;
      background-color: #97d700;
      color: #1a1a1a;
      font-size: 16px;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .login-button:hover {
      background-color: #ed8b00;
    }

    /* Forgot Password Link */
    .forgot-password {
      font-size: 14px;
      color: #ed8b00;
      cursor: pointer;
      text-decoration: underline;
      margin-top: 10px;
      display: block;
    }

    /* Error Message */
    .error-message {
      color: #ed8b00;
      font-size: 14px;
      margin-top: 10px;
    }

    /* Copyright  */
    .copyright{

     margin-top: 20px;
}
