body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh;
    overflow: hidden; 
    display: flex;
    justify-content: center;
    align-items: center;
}

#bgVideo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    z-index: -1; }

.container {
    text-align: center;
    background: rgba(255, 255, 255, 0.329); 
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 04px 06px rgb(255, 255, 255);
    width: 300px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

h1 {
    font-size: 24px;
    margin-bottom: 20px;
    color: white;
    font-family: 'Times New Roman', serif; 
}

input, textarea, button {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ffffff;
    border-radius: 4px;
    font-size: 16px;
    
}

button {
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

#status {
    margin-top: 10px;
    font-size: 14px;
    color: rgb(255, 255, 255);
}


.custom-file-button {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    width: 100%;
    margin-bottom: 10px;
}

.custom-file-button:hover {
    transform: scale3d(1.05, 1.05, 1.05);
    transition: transform 0.3s ease;
}


input[type="file"] {
    display: none;
}

.file-name {
    font-size: 14px;
    color: #ffffffae;
    margin-bottom: 10px;
    text-align: center;
    word-wrap: break-word; 
}

/* Footer styling */
.footer {
    position: fixed;
    bottom: 15px;
    right: 15px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8em;
    font-family: 'Times New Roman', serif;
    cursor: pointer;
}

.footer:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
    cursor: pointer;
}

/* Tooltip styling */
.footer:hover::after {
    content: attr(data-tooltip); 
    position: absolute;
    bottom: 40px; 
    right: 0;
    background-color: rgba(255, 255, 255, 0.8);
    color: rgb(0, 0, 0);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9em;
    white-space: nowrap;
    z-index: 10;
}