/* General layout */
.login-layout {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.video-container {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

/* Main login box */
.login-box {
    width: 400px;
    max-width: 600px;
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border-radius: 10px;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.5);
    text-align: center;
    z-index: 1;
}

    .login-box h2 {
        margin-bottom: 20px;
        font-weight: bold;
    }


.register-box {
    width: 1200px;
    max-width: 1200px;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border-radius: 10px;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.5);
    text-align: center;
    z-index: 1;
}

    .register-box h2 {
        margin-bottom: 20px;
        font-weight: bold;
    }
.textbox {
    margin-bottom: 25px;
}

    .textbox input {
        width: 100%;
        padding: 10px;
        background-color: rgba(255, 255, 255, 0.1);
        border: none;
        color: white;
        font-size: 16px;
        border-radius: 5px;
    }

/* Fix Google icon alignment if needed */
.g_id_signin {
    display: flex;
    justify-content: center;
}


