﻿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;
}
/* 🎥 Fullscreen video */
#bgVideo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* 🔥 Dark overlay */
body::before {
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: -1;
}
/* 🎥 Video background */
#bgVideo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

/* 🌑 Dark overlay */
body::before {
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

/* 🔐 Glass login card */
.login-card {
    width: 380px;
    border-radius: 15px;
    backdrop-filter: blur(12px);
    background: rgba(0, 0, 0, 0.2);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
}
/*.bg-white {
    --bs-bg-opacity: 1;
    background-color: rgba(0, 0, 0, .2) !important;
}*/
.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: rgba(0, 0, 0, .2);
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: .25rem;
}
    /* ✨ Input styling */
    .login-card input {
        background: rgba(255,255,255,0.2);
        border: none;
        color: #fff;
    }

        .login-card input::placeholder {
            color: #ddd;
        }

    /* 🔘 Button */
    .login-card .btn {
        background: linear-gradient(45deg, #4facfe, #00f2fe);
        border: none;
    }
body {
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    /*overflow: hidden;*/
}
.login-page {
    overflow: hidden;
}
.container {
    background: transparent !important;
    padding: 0 !important;
}
.bg-white {
    background: transparent !important;
}