        * {
            user-select: none;
            box-sizing: border-box;
            transition: all 0.3s ease-in-out;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: "Inter", sans-serif;
            font-optical-sizing: auto;
            font-weight: 300;
            background: #f9fafb;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            align-self: center;
            height: 100vh;
        }

        .main {
            background-color: white;
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            width: 85%;
            height: 80%;
            border: 1px solid #e5e7eb;
            border-radius: 15px;
            overflow: hidden;
        }

        .formcont {
            min-height: 100%;
            width: 50%;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-start;
            padding: 20px 20px 20px 50px;
        }

        .logospan {
            display: flex;
            align-items: center;
            font-size: 1.8em;
            font-weight: 700;
            margin: 60px 0 0 35px;
            line-height: 1.2;
            align-self: flex-start;
            transition: all 0.4s ease;
        }

        .logospan:hover svg {
            transform: scale(1.1);
            transition: all 0.4s ease;
        }

        .logospan span:first-of-type {
            color: #3b82f6;
            font-weight: bold;
        }

        .logospan span:last-of-type {
            color: #5c6570;
            font-weight: bold;
        }

        form {
            display: flex;
            flex-direction: column;
            width: 100%;
            margin: 30px 0 0 35px;
        }

        form p {
            font-size: 13px;
            color: #7796b3;
            font-weight: 400;
            margin: 0;
        }

        input:not([type="checkbox"]) {
            width: 265px;
            padding: 8px 10px;
            margin: 5px 0 10px;
            border: 1px solid #b3c9dd;
            border-radius: 5px;
            outline: none;
            background: #f8fafc;
            appearance: none;
            color: #7796b3;
        }

        input:not([type="checkbox"]):focus {
            border-color: #007bff;
        }

        button {
            background-color: #3b82f6;
            color: white;
            padding: 10px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 14px;
            letter-spacing: 1px;
            font-weight: bold;
            user-select: none;
            width: 265px;
        }

        button:hover {
            background-color: #0056b3;
            transform: translateY(-1px);
        }

        button:active {
            transform: scale(0.98);
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }

        .input-container {
            position: relative;
            margin-bottom: 15px;
            transition: all 0.3s ease;
        }

        .input-container .icon {
            position: absolute;
            left: 10px;
            top: 50%;
            transform: translateY(-50%);
            width: 20px;
            height: 20px;
            color: #888;
        }

        .input-container input {
            padding-left: 40px;
            transition: all 0.3s ease;
            box-sizing: border-box;
        }

        .input-container:hover .icon {
            fill: #3b82f6;
            transform: translateY(-50%) scale(1.1);
        }

        input:hover::placeholder {
            color: #3b82f6;
            transition: all 0.3s ease;
        }

        /* Estilos para la animación integrada */
        .animation {
            height: 100%;
            width: 45%;
            position: relative;
background:#94bcfc;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            overflow: hidden;
        }

        .animation-container {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

  .title {
        position: absolute;
        font-size: 1.5rem;
        font-weight: bold;
        color: white;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        letter-spacing: 2px;
        z-index: 10;
        opacity: 0; /* No visible, sin animación */
        animation: none; /* Eliminar animación */
    }

    .truck-svg {
        position: absolute;
        bottom: -60px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 2.5rem;
        z-index: 5;
        opacity: 0; /* No visible, sin animación */
        animation: none; /* Eliminar animación */
    }


    .form-container {
        position: absolute;
        background: white;
        padding: 1rem;
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.3);
        opacity: 0;
        transform: translateY(30px);
        min-width: 200px;
        max-width: 80%;
        animation: formAppear 1s ease-out 1s forwards; /* Reducido de 5s a 1s */
    }
        .form-title {
            font-size: 1rem;
            color: #333;
            margin-bottom: 0.8rem;
            font-weight: 600;
        }

        .input-container-anim {
            margin-bottom: 1rem;
        }

        .vehicle-input {
            width: 100%;
            padding: 8px;
            border: 2px solid #ddd;
            border-radius: 6px;
            font-size: 0.9rem;
            transition: border-color 0.3s;
        }

        .vehicle-input:focus {
            outline: none;
            border-color: #0066cc;
        }

        .submit-btn {
            width: 100%;
            padding: 8px;
            background: #0066cc;
            color: white;
            border: none;
            border-radius: 6px;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }

        .submit-btn:hover {
            background: #0052a3;
        }
.popup {
    position: absolute;
    background: #c0fcbb;
    color: #026805;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    opacity: 0;
    transform: scale(0.8);
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    animation: popupShow 0.8s ease-out 5.5s forwards, popupHide 0.3s ease-in 7.2s forwards;
}

        .operations-container {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 90%;
            max-width: 350px;
            opacity: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
animation: operationsShow 1s ease-out 7s forwards;
        }

        .operation-card {
            background: white;
            border-radius: 8px;
            padding: 0.6rem;
            margin: 0.4rem 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            opacity: 0;
            transform: translateY(20px);
            font-size: 0.8rem;
        }

.operation-card:nth-child(1) {
    animation: cardShow 1s ease-out 7s forwards;
}
.operation-card:nth-child(2) {
    animation: cardShow 1s ease-out 11.5s forwards;
}
.operation-card:nth-child(3) {
    animation: cardShow 1s ease-out 11.7s forwards;
}
.operation-card:nth-child(4) {
    animation: cardShow 1s ease-out 11.9s forwards;
}
        .card-left {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .truck-icon {
            font-size: 1.2rem;
        }

        .truck-number {
            font-weight: bold;
            color: #333;
        }

        .status {
            padding: 0.3rem 0.6rem;
            border-radius: 15px;
            text-align: center;
            font-weight: 600;
            font-size: 0.7rem;
        }

        .status.pendiente { background: #fff3cd; color: #856404; }
        .status.desaduanado { background: #d1edff; color: #0c5460; }
        .status.reconocimiento { background: #f8d7da; color: #721c24; }
        .status.liberado { background: #d4edda; color: #155724; }
        .status.null { background: #f1f1f1; color: #b4b4b4; }

        .update-btn {
            padding: 0.3rem 0.6rem;
            background: #0066cc;
            color: white;
            border: none;
            border-radius: 4px;
            font-size: 0.7rem;
            cursor: pointer;
            transition: all 0.3s;
            width: 80px;
        }

        .update-btn:hover {
            background: #0052a3;
            transform: scale(1.05);
        }

        .cursor {
            position: absolute;
            width: 15px;
            height: 15px;
            pointer-events: none;
            z-index: 1000;
            opacity: 0;
        }

        .cursor svg {
            width: 15px;
            height: 15px;
            fill: #000;
        }

        /* Animaciones */
  /* Animaciones */
    @keyframes formAppear {
        0% { opacity: 0; transform: translateY(30px); }
        100% { opacity: 1; transform: translateY(0); }
    }

    @keyframes formDisappear {
        0% { opacity: 1; transform: translateY(0); }
        100% { opacity: 0; transform: translateY(-30px); }
    }

    @keyframes popupShow {
        0% { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
        50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
        100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    }

    @keyframes popupHide {
        0% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
        100% { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
    }

    @keyframes operationsShow {
        0% { opacity: 0; }
        100% { opacity: 1; }
    }

    @keyframes cardShow {
        0% { opacity: 0; transform: translateY(20px); }
        100% { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeOutAll {
        0% { opacity: 1; }
        100% { opacity: 0; }
    }

    .typewriter-effect {
        border-right: 2px solid #0066cc;
        animation: blink 1s infinite;
    }

    @keyframes blink {
        0%, 50% { border-color: transparent; }
        51%, 100% { border-color: #0066cc; }
    }

    .click-animation {
        animation: clickEffect 0.3s ease-in-out;
    }

    @keyframes clickEffect {
        0% { transform: scale(1); }
        50% { transform: scale(0.95); }
        100% { transform: scale(1); }
    }

    .cursor-click {
        animation: cursorMove 1s ease-in-out forwards;
    }

    @keyframes cursorMove {
        0% { opacity: 0; }
        20% { opacity: 1; }
        80% { opacity: 1; }
        100% { opacity: 0; }
    }

    .fade-out-animation {
        animation: fadeOutAll 1s ease-in forwards;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .main {
            flex-direction: column;
            height: 90%;
        }
        
        .formcont, .animation {
            width: 100%;
            height: 50%;
        }
        
        .title {
            font-size: 1.2rem;
        }
        
        .truck-svg {
            font-size: 2rem;
        }
    }