body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    color: white;
  }

  .bg-video-container {
    position: relative;
    height: 100vh;
    width: 100%;
  }

  .bg-video-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translate(-50%, -50%);
    object-fit: cover;
  }

  .overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    color: white;
  }

  .btn-login {
    background-color:rgba(1, 6, 61, 0.63);
    border-color:rgba(255, 255, 255, 0.66);
    border-width: 1px; 
    margin: 0.5rem; /* agrega espacio entre botones */
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius:40px;
    color: white;
    transition: background-color 0.3s;
  }

  .btn-login:hover {
    background-color:rgba(2, 40, 106, 0.9);
    border-color:rgb(0, 170, 255);
    border-width: 1px; 
    color: rgb(255, 255, 255);
  }
  .bg-dark {
    --bs-bg-opacity: 1;
    background-color: rgb(0 3 6 / 45%) !important;
  }