.section-download {
    margin-top: 80px;
    width: 100%;
    height: 90vh;
}

.container-download {
    max-width: 100%;
    height: 90vh;
    margin: 0 auto;
    display: flex;
}

.col-cover {
    width: 70%;
    min-height: 500px;
    height: 100%;
    min-width: 70%;
    max-width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
    align-items: center;
    background-image: url('../images/slide/slide1.png');
    background-size: cover;
    border: none;

}

.menu-back {
    margin-bottom: 10px;
    backdrop-filter: blur(5px); 
    cursor: pointer;
}

.cover-img {
    width: 300px;
    height: 300px;
    border-radius: 5px;
    border: 2px solid white;
    /*background-image: url('../images/covers/cover_10741.jpg');*/
    background-size: cover;
}

.fa-backward-step {
    color: #e81275;
}

.col-details {
    width: 30%;
    min-height: 500px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    background-color: black;
    color: white;
    box-sizing: border-box;
}

.titulo-cancion-descarga {
    width: 70%;
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
    text-align: center;
}

.form-descarga {
    width: 60%;
    display: flex;
    flex-direction: column;
}

.form-descarga p {
    font-size: 10px;
    text-align: center;
    margin-bottom: 10px;
}

.form-descarga input[type=text] {
    border-radius: 5px;
    border: 1px solid #d3d3d3;
    height: 30px;
    padding: 5px;
    margin-bottom: 10px;
    font-size: 12px;
    
}

.form-descarga input[type=text]:focus {
    border-radius: 5px;
    border: 1px solid #c3c3c3;

}

.btn-descarga {
    background-color: #e81275;
    color: #ffffff;
    font-weight: bold;
    border-radius: 5px;
    border: 1px solid #e81275;
    padding: 5px;
    box-sizing: border-box;
    font-size: 12px;
    cursor: pointer;

}

.btn-descarga:hover {
    background-color: #e03585;
}

.mensaje {
    margin-top: 20px;
    border: 1px solid #ffffff;
    padding: 10px;
    box-sizing: border-box;
}

/*Media Screen for Mobile*/
@media (max-width: 768px) {

    .col-cover {
        display: none;
    }

    .col-details {
        width: 100%;
        justify-content: flex-start;
        background-color: black;
    }

    .avatar-min {
        width:200px;
        height: 200px;
        background-size: cover;
        margin: 10px 0 20px 0;
    }

    .titulo-cancion-descarga {
        font-size: 12px;
        color: white;
    }

    .btn-descarga {
        height: 50px;
        font-size: 14px;
    }

    .mensaje {
        margin: 20px;
        border: 1px solid #ffffff;
        padding: 10px;
        box-sizing: border-box;
        font-size: 12px;
    }
    


}

