.cuerpo {
    font-family     : Arial, sans-serif;
    display         : flex;
    justify-content : center;
    align-items     : center;
    height          : 60vh;
    margin          : 0;
    background-color: #ffffff;
}

.drop-container {
    width           : 520px;
    height          : 250px;
    border          : 6px dashed #ccc;
    padding         : 20px;
    text-align      : center;
    background-color: white;
    cursor          : pointer;
    display         : flex;
    flex-direction  : column;
    justify-content : center;
    align-items     : center;
    margin          : auto;
    box-sizing      : border-box;
    border-radius   : 19px;
}

.file-upload-input {
    display: none;
}

.drop-message {
    font-size  : 18px;
    color      : #777;
    font-size  : 10px;
    text-align : center;
    line-height: 1.2;
}

.drop-container.dragover {
    border-color: #f15a09;
}




.image-container {
    display        : flex;
    justify-content: center;
    align-items    : center;
    margin-bottom  : 10px;
}

.upload-icon {
    width : 64px;
    height: 64px;
}




.file-label {
    cursor: pointer;
}


#titulo {
    height: 185px;
}

.gr {
    background-color: red;
    color           : white
}














.main-text {
    font-size: 24px;
    color    : #333;
    /* Color para la primera línea */
}

.secondary-text {
    font-size: 16px;
    color    : #777;
    /* Color para la segunda línea */
}



#numFiles {
    font-size  : 35px;
    color      : rgb(255, 102, 0);
    font-weight: bolder;
}


#myProgress {
    width              : 519px;
    /* width           : 100%; */
    background-color   : #ddd;
    border-radius      : 12px;
}

#myBar {
    width           : 0%;
    height          : 30px;
    background-color: #e37e16e6;
    text-align      : center;
    line-height     : 30px;
    color           : white;
    border-radius   : 12px;
}


.mt-6{
    margin-top: 6rem!important;
}