diff --git a/themes/finc/scss/_customVariables.scss b/themes/finc/scss/_customVariables.scss
index a579fb5a484a8e82d322000ff9055bf7be22d0d0..a7a48098ef863f4e209525b0a39bcccc6bd947f1 100644
--- a/themes/finc/scss/_customVariables.scss
+++ b/themes/finc/scss/_customVariables.scss
@@ -120,9 +120,11 @@ $btn-info-active-hover-bg: lighten($brand-info, 20%) !default;
 ////// NOTE that the hover states use the default color too!
 $btn-primary-color: $white !default;
 $btn-primary-bg: $brand-primary !default;
-$btn-primary-disabled-color: $brand-secondary !default;
 $btn-primary-hover-bg: $brand-secondary !default;
 $btn-primary-hover-color: $brand-primary !default;
+$btn-primary-disabled-color: $brand-secondary !default;
+$btn-primary-disabled-hover-bg: $brand-secondary !default;
+$btn-primary-disabled-hover-color: $brand-primary !default;
 // $btn-primary-color: $btn-primary-color !default; // already defined this way in BS _variables, use this variable to change it
 // $btn-primary-bg: $brand-primary !default; // already defined this way in BS _variables, use this variable to change it
 $btn-secondary-border-color: $steel !default;
diff --git a/themes/finc/scss/compiled.scss b/themes/finc/scss/compiled.scss
index 72cec280717e60ba0acda5cb97514f620b6c4a0a..93a7d5980ad2e5013c6ab67f5b3546d7d9b574db 100644
--- a/themes/finc/scss/compiled.scss
+++ b/themes/finc/scss/compiled.scss
@@ -2488,3 +2488,32 @@ input {
 }
 
 // Accessibility - END
+
+// Account
+
+.btn-primary.disabled {
+  &:focus,
+  &:hover {
+    background-color: $btn-primary-disabled-hover-bg;
+    color: $btn-primary-disabled-hover-color;
+  }
+}
+
+.has-error .control-label,
+.has-error .help-block,
+.sms-error .control-label,
+.sms-error .help-block {
+  color: $brand-danger;
+}
+
+.has-error .form-control,
+.sms-error .form-control {
+  border: 1px solid $brand-danger;
+
+  &:focus,
+  &:hover {
+    border: 1px solid $brand-danger;
+  }
+}
+
+// Account - END