Break your stylesheet up into components (known as modularizing) based on what they do, for example form styles could belong in a forms.css.
@import 'forms.css';
You could also benefit from one of the many pre-processors available such as LESS, Sass and Stylus which can help you break things down into files as well as a bunch of other neat things.