﻿/* Background Video Styling */
#bgVideo {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translate(-50%, -50%);
    object-fit: cover; /* Ensures the video covers the entire screen */
}

/* Remove any background image from the body */
body.hold-transition.login-page {
    background: none !important;
}

/* Ensure the login box is above the video */
.login-box {
    position: relative;
    z-index: 1;
}

/* Retain and enhance existing styles */
.brand-image {
    width: 3rem !important;
}

.login-logo {
    font-size: 1.5rem !important;
}

.brand-text {
    background-color: #fff !important;
    border-radius: 2rem !important;
    padding-right: 1rem !important;
    padding-left: 3rem !important;
}

.brand-image {
    margin-top: -6px !important;
    margin-right: -2.9rem !important;
}

.card, .card-body {
    border-radius: 8px !important;
}

.card, .login-card-body {
    background-color: rgba(255, 255, 255, 0.40) !important; /* 40% opacity */
    border: none;
    box-shadow: none;
}
