diff --git a/core/includes/theme.maintenance.inc b/core/includes/theme.maintenance.inc
index 8a19a49..8d3b1a4 100644
--- a/core/includes/theme.maintenance.inc
+++ b/core/includes/theme.maintenance.inc
@@ -155,7 +155,7 @@ function theme_authorize_report($variables) {
   $messages = $variables['messages'];
   $output = '';
   if (!empty($messages)) {
-    $output .= '<div id="authorize-results">';
+    $output .= '<div class="authorize-results">';
     foreach ($messages as $heading => $logs) {
       $items = array();
       foreach ($logs as $number => $log_message) {
@@ -198,7 +198,7 @@ function theme_authorize_message($variables) {
     $item = array('data' => $message, 'class' => array('success'));
   }
   else {
-    $item = array('data' => '<strong>' . $message . '</strong>', 'class' => array('failure'));
+    $item = array('data' => $message, 'class' => array('failure'));
   }
   return $item;
 }
diff --git a/core/modules/system/css/system.maintenance.css b/core/modules/system/css/system.maintenance.css
index 9fd9f38..f8ee380 100644
--- a/core/modules/system/css/system.maintenance.css
+++ b/core/modules/system/css/system.maintenance.css
@@ -43,3 +43,10 @@
 #edit-connection-settings-change-connection-type {
   margin: 2.6em 0.5em 0 1em;
 }
+
+/**
+ * Theme maintenance styles
+ */
+.authorize-results .failure {
+  font-weight: bold;
+}
