/* General body styles for login page */
body {
    font-family: 'Roboto Condensed', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden; /* Hide overflow to prevent scrolling */
}

/* Video background container */
.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

#background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* Aspect ratio 16:9 */
    min-height: 100vh;
    min-width: 100vw;
    transform: translate(-50%, -50%);
    object-fit: cover;
    pointer-events: none; /* Allow clicks to pass through the video */
}

/* Container for the login form */
.login-container {
    background: rgb(55 55 55 / 54%); /* Translucent background */
    padding: 20px;
    border-radius: 10px;
    width: 350px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px); /* Frosted glass effect */
    z-index: 1; /* Ensure the login form is above the video */
    position: relative;
}

.logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.logo-container img {
    width: 100px; /* Adjust size as necessary */
}

.login-container h1 {
    margin: 0;
    padding: 10px;
    font-size: 24px;
    color: #fff;
}

.login-container p {
    font-size: 16px;
    color: #fff;
    margin-bottom: 20px;
}

.login-container .form-group {
    margin-bottom: 20px;
}

.login-container input[type="text"],
.login-container input[type="password"] {
    width: 90%;
    padding: 12px;
    border: 2px solid rgba(0, 0, 0, 0.3);
    border-radius: 25px;
    background: #e3e3e3;
    color: #333;
    font-size: 16px;
}

.login-container button {
    width: 100%;
    padding: 12px;
    background-color: #59595b; /* Custom button color */
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.login-container button:hover {
    background-color: #020202; /* Darker shade for hover */
}
