/* Make all inputs bigger and modern */
.vTextField, .vURLField, .vLargeTextField {
    @apply text-xl py-4 px-5 rounded-xl border-2 transition-all;
}

.vTextField:focus, .vURLField:focus {
    @apply ring-4 ring-indigo-200 border-indigo-600 shadow-lg;
}

/* Bigger file upload button */
.clearable-file-input {
    @apply text-lg;
}