This is my code to add a message above the password field.
function sen_password_protected_login_messages() {
echo ‘<p style=”font-size: 18px; text-align: center;”>Welcome to the ABC Website. <br>Please enter your password.</p>’;
}
add_action( ‘password_protected_login_messages’, ‘sen_password_protected_login_messages’ );