Given that the model is a "domain-specific representation of the data upon which the application operates." [Wikipedia: MVC], service, form, plugin classes, etc. aren't considered part of the model, so they go in their own directories under /application. The default resource auto-loader sets this up for us, so MyApp_Form_Login is automatically found in /application/form/Login.php.
For my application I need to write a custom authentication adapter. The logic in it will be application-specific, so it's not reusable library code, therefore it doesn't belong in /library/MyApp. It's not a service class, so it doesn't belong in /application/service, nor a form, etc. So, idiomatically, where should this class be stored?