.uploadOuter {
    text-align: center;
    padding: 20px;
}

.dragBox {
    width: 100%;
    height: 100px;
    margin: 0 auto;
    position: relative;
    text-align: center;
    font-weight: bold;
    line-height: 95px;
    color: #999;
    border: 2px dashed #ccc;
    display: inline-block;
    transition: transform 0.3s;
}

.dragBox [type="file"] {
    position: absolute;
    height: 100%;
    width: 100%;
    opacity: 0;
    top: 0;
    left: 0;
    cursor: pointer;
}

.draging {
    transform: scale(1.1);
}

#preview {
    text-align: center;

}

#preview img {
    max-width: 100%;
}