Drupalのform apiにある「prefix/suffix」を利用して、テキストボックスと検索ボタンをグルーピングします
function your_module_search_form($form, $form_state){
$form["title"] = array(
"#type" => "textfield",
"#required" => true,
"#maxlength" => 20,
"#attributes" => array('placeholder' => t("Vocabulary, up to 30 letters") ,
"#title" => t("Vocabulary"),
"#prefix" => "<div class='input-group'>",
);
$form["item_search"] = array(
"#type" => "button",
"#value" => t("Search"),
"#prefix" => "<span class='input-group-btn' style='vertical-align:bottom;'>",
"#suffix" => "</span></div>",
);
return $form;
}