.btn{
    @apply h-11 px-6 md:px-8 inline-flex items-center max-w-full cursor-pointer text-parrafo disabled:opacity-40;
}

.btn-text{
    @apply h-11 px-4 inline-flex items-center cursor-pointer max-w-full;
}

.btn-primary{
    @apply bg-primary text-white rounded-md justify-center text-center;
}

.btn-secondary{
    @apply bg-gray-100 text-black rounded-md text-center;
}

.btn-add{
    @apply bg-primary text-white rounded-md gap-x-2;
}

.btn-text-blue{
    @apply text-primary transition duration-150 ease-in-out;
}

.btn-add-outline{
    @apply gap-x-4 bg-white border border-primary text-primary rounded-md;
}

.btn-outline-secondary{
    @apply px-4 uppercase h-14 bg-white border  border-gray-200 text-black rounded-md hover:bg-gray-50 transition-colors;
}

.btn-remove{
    @apply bg-red-500 text-white rounded-md;
}