/**
* Implements hook_theme_suggestions_HOOK_alter() for form templates.
*/
function acc_theme_suggestions_form_alter(array &$suggestions, array $variables) {
if (isset($variables['element']['#form_id'])) {
$suggestions[] = 'form__' . $variables['element']['#form_id'];
}
}