drupal 8 form theme suggestion by form_id code example
Example: drupal 8 form element theme suggestions
function MYMODULE_theme_suggestions_form_element_alter(array &$suggestions, array $variables, $hook) {
if ( $variables['element']['#id'] === 'FORMID') {
$suggestions[] = $hook . '__custom';
}
}