/* HY Custom Theme — override btn-primary to orange */
.btn-primary {
  background: #FF9020;
  border-color: #FF9020;
}
.btn-primary:focus {
  background: #FF8000;
  border-color: #F07500;
  box-shadow: 0 0 0 0.2rem rgba(255, 144, 32, 0.5);
}
.btn-primary:hover {
  background: #FF8000;
  border-color: #F07500;
}
.btn-primary.disabled,
.btn-primary:disabled {
  background: #FF9020;
  border-color: #FF9020;
}
.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active {
  background: #E07000;
  border-color: #D06800;
}
.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 144, 32, 0.53);
}

/* Input focus — laranja */
.form-control:focus {
  border-color: #FF9020;
  box-shadow: 0 0 0 0.2rem rgba(255, 144, 32, 0.25);
}
