.shadow-sm {
  box-shadow: 0 0.5px 2px 0 rgba(0, 0, 0, 0.15) !important;
}

.navbar-nav .nav-item .nav-link {
  border-bottom: 3px solid #ffff !important;
}

.navbar-nav .nav-item .nav-link:hover {
  color: var(--bri-80);
  border-bottom: 3px solid var(--orange-80) !important;
}

.form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: #ced4da;
  outline: 0;
  box-shadow: none !important;
}

input[type="text"],
input[type="password"],
input[type="email"] {
  background-color: #ffff;
  font-size: 0.8rem !important;
}

.bg-blue {
  background-color: var(--bri-80);
  color: #ffff;
}

.text-blue {
  color: var(--bri-80);
}

.toggle-password {
  background-color: #ffff;
}

.input-group {
  border: 1px solid #ced4da !important;
}

.input-group.border-danger {
  border: 1px solid var(--bs-danger) !important;
  transition-duration: 0.15s, 0.15s;
}

#password {
  border: none !important;
}

.g-recaptcha {
  scale: 80%;
}

p {
  font-size: 14px !important;
}

.form-floating label {
  font-size: 14px !important;
}

input::placeholder {
  opacity: 0.5;
}

.footer {
  position: block;
  margin-top: -2rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

input[type="text"],
input[type="email"],
input[type="password"] {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  -webkit-user-select: text !important;
  user-select: text !important;
}

@media (min-width: 768px) { 
  .footer {
    position: absolute;
    bottom: 0;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    text-align: center;
  }
}

@keyframes skeleton {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: 0 0;
  }
}

span.skeleton {
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-name: skeleton;
  animation-timing-function: linear;
  background: linear-gradient(90deg, #f2f2f2 25%, #e6e6e6 37%, #f2f2f2 63%);
  background-size: 400% 100%;
  display: inline-block;
  line-height: 1;
  width: 100%;
}