<html> <body> <style> .highlight { background: #FA6; } </style> <p>Логин</p> <input> <p>Пароль</p> <input> <script> var input = document.getElementsByTagName('input')[0]; input.onfocus = function () { this.className = 'highlight'; } input.onblur = function () { this.className = ''; } </script> </body> </html>
SCREENSHOT: s006.radikal.ru/i215/1405/c5/ec7baf58877f.png