.uploadFile {
    margin: 0;
    position: relative;
    border-radius: 30px;
    background-color: #FCF7EA;
    cursor: pointer;
    transition: 0.3s;
    overflow: hidden;
    height: 147px;
    width: 100%;
    text-align: center;
}

.uploadFile input {
    position: absolute;
    top: 0;
    right: 100%;
    width: 100%;
    height: 1px;
    opacity: 0;
    cursor: pointer;
    z-index: 3;
}
.uploadFile .image-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    flex-direction: column;
    border: 1px solid #E4B755;
    border-radius: 30px;
    cursor: auto;
}

