
:root{
  --rpm-primary: #da30da;
  --rpm-secondary: #0042a9;
}

body{
  font-family: Arial !important;
}

/* BOTONES */
.btn-primary{
  background-color: var(--rpm-primary) !important;
  border-color: var(--rpm-primary) !important;
}
.btn-outline-primary{
  color: var(--rpm-primary) !important;
  border-color: var(--rpm-primary) !important;
}
.btn-outline-primary:hover{
  background-color: var(--rpm-primary) !important;
  color:#fff !important;
}

/* LINKS */
a{ color: var(--rpm-primary); }
a:hover{ opacity: .85; }

/* NAVBAR / FOOTER / BG-DARK */
.navbar.bg-dark, footer.bg-dark, .bg-dark{
  background-color: var(--rpm-secondary) !important;
}

/* INPUT FOCUS */
.form-control:focus, .form-select:focus{
  border-color: var(--rpm-primary) !important;
  box-shadow: 0 0 0 .2rem rgba(0,0,0,.06) !important;
}
