body {
  margin: 0;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  background-color: rgb(250, 250, 250);
}
.filtro {
    display: none;
}
.bg-top img {
  position: absolute;
  width: 100%;
  z-index: 1;
}
.login-container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}
.login-form {
  background: #fff;
  border: 2px solid #ff2244;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(255,0,36,0.12);
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 380px;
}
.login-form h2 {
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
  color: #d00730;
}
.input-group {
  display: flex;
  align-items: center;
  margin-bottom: 1em;
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #ffffff;
  padding: 0.3em 0.6em;
}

.input-group input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 1em;
  flex: 1;
  padding: 0.5em 0;
}

span {
  padding-right: 15px;
}

.container-fluid {
  position: relative;
  z-index: 2;
}

.navbar-custom {
  background-color: red;
}
.navbar-custom .nav-link,
.navbar-custom .navbar-brand {
  color: white;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,…");
}
.nav-pills .nav-link svg,
.nav-pills .nav-link svg path {
  fill: currentColor !important;
  color: inherit !important;
  transition: 0.3s ease;
}

.nav-pills .nav-link {
  background-color: red !important;
  color: white !important;
  border-radius: 0px;
}


.nav-pills .nav-link:hover {
  background-color: #cc0000 !important;
  color: #fff !important;
}


.nav-pills .nav-link.active {
  background-color: white !important;
  color: red !important;
}

.nav-pills .nav-link.active svg,
.nav-pills .nav-link.active svg path {
  color: red !important;
  fill: currentColor !important;
}


