html {
	height: 100%;
  	margin: 0;
  	padding: 0;
  	overflow-y: scroll;
}

#login::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(8px);
    z-index: -1;
}

#login {
    background-image: url('../img/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 50vh;
    height: 100%;
  	margin: 0;
  	padding: 0;
}

body {
  background: #f5f7fb;
}

#sidebarMenu {
  height: 100vh;
}

.nav-link {
  transition: background-color 0.3s ease, color 0.3s ease;
  border-radius: .375rem;
}

.nav-link:hover {
  background-color: #d6d8db;
  color: #212529 !important;
  border-radius: .375rem;
}

/* Sidebar link activo dentro de bg-dark */
#sidebarMenu .nav-link.active {
  background-color: #0d6efd;
  color: #fff !important;
  font-weight: 600;
  border-radius: .375rem;
}

.bg-teal {
  background-color: #1fa8a1 !important;
}
.card.rounded-3 {
  border-radius: 12px;
}
.card-header {
  border-top-left-radius: 12px !important;
  border-top-right-radius: 12px !important;
}

