input[type=file].form {
    @apply block rounded-sm mb-2;
    border: 1px solid config('colors.transparent');
    &:focus {
        @apply outline-none shadow-outline;
        border-color: config('colors.blue');
    }
    &:disabled {
        @apply pointer-events-none opacity-50;
    }
}
