/* 
  TEKY Button Styles for Devise views
  Customizes all buttons to use TEKY brand colors
*/
/* Primary buttons - use TEKY green */
/* line 7, app/assets/stylesheets/devise/teky_buttons_devise.scss */
.btn-primary {
  color: #fff !important;
  background-color: #5DC2A7 !important;
  border-color: #5DC2A7 !important;
}

/* line 13, app/assets/stylesheets/devise/teky_buttons_devise.scss */
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  color: #fff !important;
  background-color: #4DAF94 !important;
  border-color: #4DAF94 !important;
}

/* Secondary buttons - use TEKY orange */
/* line 22, app/assets/stylesheets/devise/teky_buttons_devise.scss */
.btn-secondary {
  color: #fff !important;
  background-color: #EB9138 !important;
  border-color: #EB9138 !important;
}

/* line 28, app/assets/stylesheets/devise/teky_buttons_devise.scss */
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active {
  color: #fff !important;
  background-color: #D87F26 !important;
  border-color: #D87F26 !important;
}

/* Success buttons - use TEKY green */
/* line 37, app/assets/stylesheets/devise/teky_buttons_devise.scss */
.btn-success {
  color: #fff !important;
  background-color: #5DC2A7 !important;
  border-color: #5DC2A7 !important;
}

/* line 43, app/assets/stylesheets/devise/teky_buttons_devise.scss */
.btn-success:hover,
.btn-success:focus,
.btn-success:active {
  color: #fff !important;
  background-color: #4DAF94 !important;
  border-color: #4DAF94 !important;
}

/* Info buttons - use TEKY green */
/* line 52, app/assets/stylesheets/devise/teky_buttons_devise.scss */
.btn-info {
  color: #fff !important;
  background-color: #5DC2A7 !important;
  border-color: #5DC2A7 !important;
}

/* line 58, app/assets/stylesheets/devise/teky_buttons_devise.scss */
.btn-info:hover,
.btn-info:focus,
.btn-info:active {
  color: #fff !important;
  background-color: #4DAF94 !important;
  border-color: #4DAF94 !important;
}

/* Warning buttons - use TEKY orange */
/* line 67, app/assets/stylesheets/devise/teky_buttons_devise.scss */
.btn-warning {
  color: #fff !important;
  background-color: #EB9138 !important;
  border-color: #EB9138 !important;
}

/* line 73, app/assets/stylesheets/devise/teky_buttons_devise.scss */
.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active {
  color: #fff !important;
  background-color: #D87F26 !important;
  border-color: #D87F26 !important;
}

/* Danger buttons - keep red but adjust to match TEKY style */
/* line 82, app/assets/stylesheets/devise/teky_buttons_devise.scss */
.btn-danger {
  color: #fff !important;
}

/* Links - use TEKY green */
/* line 87, app/assets/stylesheets/devise/teky_buttons_devise.scss */
a {
  color: #5DC2A7;
}

/* line 91, app/assets/stylesheets/devise/teky_buttons_devise.scss */
a:hover {
  color: #EB9138;
}

/* Form submit buttons */
/* line 96, app/assets/stylesheets/devise/teky_buttons_devise.scss */
input.btn-primary[type="submit"],
button.btn-primary[type="submit"] {
  background-color: #5DC2A7 !important;
  border-color: #5DC2A7 !important;
}

/* line 102, app/assets/stylesheets/devise/teky_buttons_devise.scss */
input.btn-primary[type="submit"]:hover,
button.btn-primary[type="submit"]:hover {
  background-color: #4DAF94 !important;
  border-color: #4DAF94 !important;
}
