/* palette variable déjà dispo dans :root (theme) */
.btn-theme{
  background: var(--theme-color2);
  color:#fff;
  border:none;
}
.btn-theme:hover{background:var(--secondary-color);}

.modal-header.bg-theme{
  background: var(--theme-color);
}

input.form-control, textarea.form-control{
  border:1px solid var(--border-color);
  transition:border-color .2s, box-shadow .2s;
}
input.form-control:focus, textarea.form-control:focus{
  border-color:var(--theme-color2);
  box-shadow:0 0 0 .25rem rgba(255,104,26,.25);
}
