Redirect Every Instance of The Author Template Pages to Custom Author Pages

You do this with URL Rewriting. Locate your .htaccess file and add this line above # BEGIN WordPress

RewriteEngine On
RewriteRule ^author/(.*)$ /team/$1 [R=301,NC,L]

Note, if you put this inside the wordpress block it will get rewritten next time your permalinks are regenerated.