The alt property is a property of the image tag, it's not an element by itself. You can't style the alt property, in much the same way as you can't style the src property.
When you use img[alt] as a selector in CSS, you are not tatgeting the alt attribute of image tags, you are targeting any image tag that has an alt attribute. As you are setting the font size of the image tag, it will naturally also affect the image tag.
If you mean that you want to style the tooltip that some prowsers show when you hover the image, you can't do that. The tooltop is an implementation detail in the browser, and there is nothing in HTML that says that the alt attribute should be used that way, so there is no means in HTML for controlling that feature.
The intention of the alt attriute is to have something to show to the user if it's not possible to show the image.