html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}
/* FORZAR LA BARRA DE NAVEGACIÓN OSCURA */
.navbar {
    background-color: #050505 !important; /* El mismo negro de tu Landing */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important; /* Borde sutil */
}

.navbar-brand, .nav-link {
    color: #ffffff !important; /* Letras blancas */
    transition: color 0.3s;
}

    .nav-link:hover {
        color: #00FF88 !important; /* Verde Neón al pasar el mouse */
    }