/*Diseño*/
/*Tomado: https://www.youtube.com/watch?v=Sb5qOa3R4hY*/
/*Canal: Traversy Media*/
.body_form{
    background: #92bde7;
    color: #485e74;
    line-height: 1.6;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 1em;
}
.contenedor_primario_form{
    max-width: 1170px;
    margin-left: auto;
    padding: 1em;
}

ul{
    list-style: none;
    padding: 0%;
}

.item_titulo{
    text-align: center;
}

.contenedor_secundario{
    box-shadow: 0 0 20px 0 rgba(72, 94, 116, 0.7);
}

.contenedor_secundario > *{
    padding: 1em;
}

.contenedor_info{
    background: #c9e6ff;
}

.contenedor_info h3, .contenedor_info ul{
    text-align: center;
    margin: 0 0 1rem 0;
    padding-top: 15px;
}

.contenedor_form{
    background: #f9feff;
}

.contenedor_form h3{
    text-align: center;
}

/*Estilos formulario */
.contenedor_form{
    display: grid;
    grid-template-columns: 1fr;   
}

.contenedor_form form input{
    width: 97%;
}

.contenedor_form form label{
    margin-bottom: 5px;
}

.stlselect{
    width: 100%;
    border: 0;
    background: white;
    padding: 6px;
    border-bottom: 1px solid rgb(230, 223, 223);
    appearance: none;
	-webkit-appearance: none;
    -moz-appearance: none;
    margin-bottom: 10px;
    display: block;

}

.contenedor_form form textarea{
    width: 100%;
    
}

#btn_subir{
    background: #0fac7d;
    padding: 2px;
}

.separador{
    margin-top: 5px;
    margin-bottom: 5px;
}

.overlay{
 position: absolute;
 
 top: 0;
 left: 0;
 width: 100%;

 background-color: rgba(0,0,0, 0.5);
 z-index: 20;
 display: flex;
 justify-content: center;
 align-items: center;
 transition: all 0.7s ease;

}


@media(min-width:700px){
    .contenedor_secundario{
        display: grid;
        grid-template-columns: 1fr 2fr;
    }


}

