body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
overflow-y: auto;

    color: white;
    
}

#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -100; /* Push below other content */
    pointer-events: none; /* Prevent it from blocking UI */
}




.container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100vh;
    padding: 20px;
    flex-wrap: wrap;
}

.left {
    text-align: center;
}

.logo {
    max-width: 800px;
    height: auto;
    margin-bottom: 30px;
}

.login-box {
    background: rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 12px 40px rgba(162, 89, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
    width: 100%;
    max-width: 420px;
    transition: all 0.3s ease-in-out;
}

.login-box h2 {
    margin-bottom: 30px;
    font-weight: 700;
    color: #ffffff;
    font-size: 1.8rem;
}

.login-box input {
    width: 100%;
    padding: 14px 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: 0.3s ease;
    text-align: center;
}

.login-box input:focus {
    outline: none;
    border-color: #a259ff;
    box-shadow: 0 0 5px #a259ff;
    background-color: rgba(255, 255, 255, 0.15);
}

.login-box input::placeholder {
    color: #bbb;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.login-box form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-box button {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;
    background-color: #a259ff;
    color: #fff;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.login-box button:hover {
    background-color: #924cff;
    transform: translateY(-1px);
}

footer {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
    font-size: 13px;
    color: #aaa;
}

.remember-me {
    width: 100%;
    margin-bottom: 20px;
    display: flex;
    justify-content: flex-start;
}

.remember-me label {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #ccc;
    cursor: pointer;
}

.remember-me input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    accent-color: #a259ff;
    cursor: pointer;
    position: relative;
    top: 1px;
}

/* Responsive Enhancements */
@media screen and (max-width: 768px) {
    .container {
        flex-direction: column;
        padding: 30px 20px;
        justify-content: center;
        align-items: center;
        height: auto;
    }

    .left {
        margin-bottom: 20px;
        text-align: center;
    }

    .logo {
        max-width: 90%;
        height: auto;
    }

    .login-box {
        width: 100%;
        max-width: 85%;
        padding: 25px 20px;
        margin-bottom: 20px;
    }

    .login-box h2 {
        font-size: 1.5rem;
    }

    .login-box input {
        font-size: 14px;
        padding: 12px;
    }

    .login-box button {
        font-size: 15px;
        padding: 12px;
    }

    .remember-me {
        font-size: 13px;
        flex-direction: column;
        align-items: flex-start;
    }

    footer {
        position: relative;
        margin-top: 30px;
        font-size: 12px;
    }
}
