  body, html {
            margin: 0;
            padding: 0;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            background: linear-gradient(to bottom, #1B2836, #2c3e50);
            background-size: cover;
            overflow: hidden;
        }
h1,
p {
    font-family: 'Poppins', sans-serif;
}

h1 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
}

p {
    font-size: 18px;
    font-weight: 400;
    color: #ccc;
}
        .container {
            text-align: center;
            color: white;
        }
img {
    max-width: 80%;
    height: auto;
    transition: transform 0.3s ease;
    border-radius: 0 !important;
    /* Fuerza sin bordes redondeados */
}

.logo-img {
    max-width: 80%;
    height: auto;
    transition: transform 0.3s ease;
    border-radius: 0 !important;
    clip-path: none !important;
    mask-image: none !important;
    shape-outside: none !important;
    aspect-ratio: auto !important;
    box-shadow: none !important;
    object-fit: contain !important;
}

        img:hover {
            transform: scale(1.05);
        }

        .login-container {
            margin-top: 20px;
        }

        .login-button {
            background: linear-gradient(45deg, #2980b9, #8e44ad); /* Ajusta los colores */
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 25px;
            cursor: pointer;
            font-size: 18px;
            transition: background 0.3s, box-shadow 0.3s;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        }

        .login-button:hover {
            background: linear-gradient(45deg, #8e44ad, #2980b9);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
        }

        .login-form {
            display: none;
            margin-top: 20px;
            animation: fadeIn 0.5s ease;
        }

        .login-form input[type="number"] {
            padding: 12px;
            font-size: 18px;
            border: none;
            border-radius: 25px;
            width: 200px;
            margin-right: 10px;
            outline: none;
            transition: box-shadow 0.3s;
        }

        .login-form input[type="number"]:focus {
            box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
        }

        .login-form .search-icon {
            cursor: pointer;
            font-size: 24px;
            color: #3498db;
            transition: color 0.3s;
            background: transparent;
            border: none;
        }

        .login-form .search-icon:hover {
            color: #2ecc71;
        }

        .notification {
            display: none;
            background: #e74c3c;
            color: white;
            padding: 20px;
            border-radius: 10px;
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            font-size: 18px;
            text-align: center;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }