/* Reset margins and paddings for the entire page */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5; /* Light gray background in case video fails to load */
}

/* Background video styling */
.bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: grayscale(50%) brightness(80%); /* Subtle grayscale and brightness for a corporate texture */
}

/* Main container styling for central alignment */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    color: #333; /* Dark gray text for a corporate feel */
    padding: 20px;
}

/* Styling for welcome text */
.welcome-text {
    color: purple; /* Corporate accent color */
    margin: 5px;
    font-size: 24px;
    font-weight: bold;
}

/* Styling for the form container */
.form-container {
    background-color: rgba(240, 240, 240, 0.8); /* Light gray with opacity */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    max-width: 400px;
    width: 100%;
    margin-top: 15px;
}

/* Styling for input fields */
.form-container input {
    display: block;
    width: 80%;
    margin: 10px auto;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    background-color: #f9f9f9;
}

/* Button styling */
button {
    padding: 10px 20px;
    background-color: #7f8c8d; /* Corporate gray */
    border: none;
    border-radius: 4px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #5d6d6d; /* Darker shade on hover */
}

/* Styling for the info box */
.info-box {
    background-color: rgba(240, 240, 240, 0.8); /* Matching light gray with opacity */
    padding: 20px;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for a professional look */
    max-width: 400px;
    width: 100%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .form-container, .info-box {
        width: 90%;
    }

    .welcome-text {
        font-size: 20px;
    }
}