body {
        background-image: url('../img/background001.jpg'); /* Reemplaza 'ruta/a/tu/imagen.jpg' con la ubicación real de tu imagen */
        background-repeat: no-repeat; /* Evita que la imagen se repita */
        background-size: cover; /* Escala la imagen para cubrir todo el fondo */
        background-position: center center; /* Centra la imagen en el fondo */
        /* Opcional: Puedes agregar más estilos como color de texto para asegurar la legibilidad */
        color: #333; /* Un color de texto oscuro para fondos claros */
        /* Otros estilos que desees aplicar al body */
      }


      body {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
        margin: 0;
        font-family: sans-serif;
    }

    .login-container {
        background-color: #fff;
        padding: 30px;
        border-radius: 8px;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
        width: 90%; /* Responsive width */
        max-width: 400px; /* Maximum width */
        text-align: center;
    }

    .logo-container {
        margin-bottom: 20px;
    }

    .logo-container img {
        max-width: 150px; /* Adjust logo size */
        height: auto;
    }

    .login-container h1 {
        color: #333;
        margin-bottom: 25px;
        font-size: 2em;
    }

    .input-group {
        margin-bottom: 20px;
        text-align: left; /* Align label to the left */
    }

    .input-group label {
        display: block;
        margin-bottom: 5px;
        color: #555;
        font-size: 0.9em;
    }

    .input-group input[type="text"],
    .input-group input[type="password"] {
        width: calc(100% - 12px); /* Adjust for padding */
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 4px;
        box-sizing: border-box;
        font-size: 1em;
    }

    .password-input-container {
        position: relative; /* Establecemos el contexto de posicionamiento para el icono */
        display: flex; /* Para alinear el input y el icono */
        align-items: center; /* Centrar verticalmente los elementos */
    }
    
    .password-input-container input[type="password"],
    .password-input-container input[type="text"] {
        width: 100%; /* El input ocupa todo el ancho disponible */
        padding-right: 30px; /* Dejamos espacio para el icono a la derecha */
    }
    
    .password-input-container .toggle-password {
        position: absolute; /* Posicionamos el icono absolutamente dentro del contenedor */
        right: 10px; /* Lo colocamos a 10px del borde derecho */
        top: 50%; /* Lo centramos verticalmente */
        transform: translateY(-50%); /* Ajuste fino para el centrado vertical */
    }

    .button-group {
        display: flex;
        gap: 10px; /* Space between buttons */
        justify-content: center;
    }

    .button-group button {
        padding: 10px 20px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        font-size: 1em;
        transition: background-color 0.3s ease;
    }

    .button-group button.employee-login {
        background-color: #6c757d; /* Gray color */
        color: white;
    }

    .button-group button.login-button {
        background-color: #007bff; /* Blue color */
        color: white;
    }

    .button-group button:hover {
        opacity: 0.9;
    }

    /* Responsive adjustments */
    @media (max-width: 576px) {
        .login-container {
            padding: 20px;
        }

        .logo-container img {
            max-width: 120px;
        }

        .login-container h1 {
            font-size: 1.5em;
            margin-bottom: 20px;
        }

        .input-group {
            margin-bottom: 15px;
        }

        .button-group {
            flex-direction: column; /* Stack buttons on smaller screens */
            align-items: stretch; /* Make buttons full width */
            gap: 10px;
        }

        .button-group button {
            padding: 12px 15px;
            font-size: 1em;
        }
    }