
    .input-pinoquio {
        display: none !important;
    }

    .w-5 {
        width: 1.25rem/* 20px */;
    }

    .h-5 {
        height: 1.25rem/* 20px */;
    }

    .mr-3 {
        margin-right: 0.75rem/* 12px */;
    }

    .-ml-1 {
        margin-left: -0.25rem/* -4px */;
    }

    .text-white-500 {
        color: white;
    }

    @keyframes spin {
        to {
            transform: rotate(360deg);
        }
    }
    .animate-spin {
        animation: spin 1s linear infinite;
    }

    .hidden {
        display: none;
    }

    .bg-green-100 {
        background-color: green;
    }

    .border-l-4 {
        border-left-width: 4px;
    }

    .border-green-500 {
        border-color: green;
    }

    .text-green-700 {
        color: green;
    }

    .p-4 {
        padding: 1rem/* 16px */;
    }

    .top-4 {
        top: 1rem/* 16px */;
    }

    .h-fit {
        height: fit-content;
    }

    .form-toast,
    .form-toast-error {
        position: absolute;
        bottom: 50px;
        right: 50px;
        z-index: 100;
        opacity: 1;
        transition-property: opacity;
        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        transition-duration: 700ms;
        transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
    }

    .form-toast.fade-hidden, 
    .form-toast-error.fade-hidden {
        opacity: 0;
    }

    .bg-red-100 {
        background-color: red;
    }

    .border-red-500 {
        border-color: red;
    }

    .text-red-700 {
        color: red;
    }

    .form-toast-success, .form-toast-error{
        border-radius: 0.5rem;
        padding: 1rem !important;
        position: unset !important;
        width: 100% !important;
        font-size: 0.9rem !important;
        font-weight: 700 !important;
    }

