/* styles.css */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden; /* Prevents scrolling */
}

.container {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#videoPlayer {
    flex-grow: 1;
    width: 100%; /* Ensures it takes full width */
}

input[type="password"], button {
    padding: 10px;
    margin-top: 10px;
    width: 90%; /* Responsive width */
    max-width: 300px; /* Maximum width */
}

button {
    background-color: #0056b3;
    color: white;
    border: none;
    cursor: pointer;
}
