body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 400px;
    width: 100%;
}

h1 {
    margin-bottom: 20px;
    color: #333;
}

.upload-section {
    margin-bottom: 20px;
}

input[type="file"],
input[type="text"] {
    display: block;
    width: calc(100% - 20px);  /* Ensure the inputs align */
    padding: 10px;
    margin: 10px auto;
    font-size: 1em;
    border: 1px solid #ddd;
    border-radius: 5px;
}

button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

button i {
    margin-right: 5px;
}

button:hover {
    background-color: #0056b3;
}

a {
    margin-top: 20px;
    display: inline-block;
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
