#upload .upload {
    display: inline-block;
    width: 100%;
    max-width: 600px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    padding: 25px;
    margin: 14px;
}

#upload h1 {
    font-size: 1em;
    color: #6f48ad;
    margin-bottom: 20px;
}

#upload form {
    position: relative;
    display: block;
    margin-bottom: 10px;
}

#upload #formFiles input {
    position: relative;
    border: thin solid #ddd;
    padding: 12px;
    width: 100%;
    border-radius: 3px;
    margin-bottom: 10px;
}

#upload #formFiles button {
    position: relative;
    cursor: pointer;
    padding: 14px;
    display: inline-block;
    background-color: #1933a8;
    color: #fff;
    font-weight: bold;
    font-size: 1.1em;
    border: none;
    outline: none;
    width: 100%;
    border-radius: 3px;
}

#upload #formFiles button:hover {
    background-color: #5b12e6;
}

#upload #progressBar {
    position: relative;
    display: none;
    background: linear-gradient(135deg, rgb(34, 130, 227) 0%, rgb(9, 226, 51) 100%);
    height: 16px;
    width: 0;
    line-height: 16px;
    color: #fff;
    font-size: 0.75em;
    overflow: hidden;
}

#upload #return {
    font-size: 0.8em;
    font-weight: bold;
    margin-bottom: 5px;
}
