/* Set the video as the background */
#background-video {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
    object-fit: cover;
    filter: brightness(60%);
    transform: translate(-50%, -50%); /* Center the video */
}

/* Ensure body and html take up the full viewport height */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container {
    margin-top: 350px;
    color: white;
    background:none;
    padding: 20px;
    border: 3px solid white;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (max-width:768px) {
    .container {
        margin-top: 350px;
        margin-left: 20px;
        margin-right: 20px;
    }
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

h2 {
    margin-top: 0;
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    margin-bottom: 10px;
}

label {
    display: block;
    margin-top: 20px;
}

button {
    display: block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: yellow;
    color: black;
    border: none;
    border-radius: 5px;
    cursor: not-allowed;
}

button:enabled {
    cursor: pointer;
}
