body {
    font-family: Arial, sans-serif;
    background-color: #f4f7f6;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    width: 100%;
    max-width: 400px;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

h1 {
    color: #333;
    text-align: center;
    margin-bottom: 20px; /* Ensures space between the header and the file input */
}

input[type="file"] {
    display: block;
    width: 100%;
    margin: 0 0 20px; /* Adds space between the file input and the button */
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 4px;
    box-sizing: border-box;
}

button {
    background-color: #ff0000;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
}

button:hover {
    background-color: #ae0000;
}
#companyLogo {
    display: block;
    max-width: 100px; /* Adjust based on your logo's size */
    height: auto; /* Maintain aspect ratio */
    margin: 0 auto 20px; /* Center the logo and add some space below it */
}

