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;
}

/* ==== Background Video Styles ==== */

.bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* maintain aspect ratio while covering screen */
    z-index: -1; /* keep video behind all content */
    background-color: #000; /* fallback color while video loads */
}

/* Optional dark overlay for readability */
.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

/* Main page content sits above the video */
.content {
    position: relative;
    z-index: 1;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh; /* vertically center content */
    text-align: center;
}

/* Optional: style the login box */
.login-container {
    
    padding: 2rem;
    border-radius: 10px;
    width: 100%;
    max-width: 400px;
}
