*{
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
/*
body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}
*/
.drop-area{
    border: 5px dashed #ddd;
    border-radius: 5px;
    height: 192px;
    width: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-right: 42px;
}
.foto_cargada{
    width: 100%;
    display: flex;
}

.imagen-subida{
    /*border: 5px dashed #ddd;*/
    border-radius: 5px;
    height: 170px;
    width: 150px;
}

.drop-area .active{
    border: 2px dashed #618ac9;
    background: #b8d4fe;
    color: #000;
}

.drop-area h3{
    font-size: 18px;
    font-weight: 500px;
    color: #fff;
}

.drop-area span{    
    font-size: 25px;
    font-weight: 500px;
    color: #000;
}

.drop-area button{
    padding: 10px 25px;
    font-size: 20px;
    border: none;
    outline: none;
    background: #5256ad;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    margin: 20px;
}

.file-container{
    display: flex;
    align-items: center;
    /*gap: 10px;*/
    padding: 10px;
    border: solid 1px #ddd;
}

.preview{
    margin-top: 10px;
}

.success{
    color: #52ad5a;
}

.failure{
    color: #ff0000;
}

.drop-area .icon{
    font-size: 100px;
    color: #aaa;
}

.drop-area header{
    color: #aaa;
    font-size: 30px;
    font-weight: 500;
    margin: 0 0 5px 0;
}



