.wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.upload-container {
    position: relative;
    border: 4px solid hwb(0 45% 55%);
    background-color: rgb(238, 238, 238);
    padding-bottom: 2px;    
    display: block;
    width: fit-content;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    z-index: 1;
}

input[type="file"] {
    margin-bottom: 20px;
}

#uploadForm button {
    padding: 10px 20px;
    background: #5e5e5e;
    color: #fff;
    border: 2px solid #000000;
    border-radius: 4px;
}

#uploadForm button:hover {
    background: #484848;
}

#uploadForm {
    margin-top: 10px;
}

#progressContainer {
    width: 100%;
    background-color: #f3f3f3;
    border: 1px solid #ccc;
    margin-top: 25px;
}

#progressBar {
    width: 0;
    height: 30px;
    background-color: #8b8b8b;
    text-align: center;
    line-height: 30px;
    color: white;
}

h3 {
    margin-bottom: 0;
}

#maxMessage {
    font-size: .7em;
    margin: 0;
}