body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #868b97;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff8f8;
    border-radius: 8px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.file-input-container {
    text-align: center;
    margin-bottom: 20px;
}

.file-input-label {
    display: inline-block;
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.file-input-label:hover {
    background-color: #0056b3;
}

.icon {
    margin-right: 10px;
}

input[type="file"] {
    display: none;
}

.input-container {
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
}

input[type="text"] {
    width: calc(50% - 10px);
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    outline: none;
    margin-right: 10px;
}

input[type="text"]:focus {
    border-color: #007bff;
}

button {
    display: block;
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 6px;
    background-color: rgb(122 172 226);
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: rgb(22, 62, 105);
}

.download-link {
    display: block;
    margin-top: 20px;
    text-align: center;
    color: #993a73;
    text-decoration: none;
}

.download-link:hover {
    text-decoration: underline;
}

@media screen and (max-width: 600px) {
    .container {
        margin: 20px;
        overflow: hidden;
    }

    .input-container {
        flex-direction: row;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        align-content: center;
    }

    input[type="text"] {
        width: 100%;
        margin-bottom: 10px;
    }
}
