*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Helvetica, sans-serif;
    text-decoration: none;
}

body{
    background: #e7e7e7;
}

p{
    font-size: 22px;
    color: #5e5e5e;
}



/*----------------------------------*/
/*MAIN*/

main{
    max-width: 1200px;
    margin: auto;
    border-radius: 12px;
}


/* TITULO */

.contenedor_titulo{
    background: linear-gradient(to bottom right, #2DCABF, #22605C);
    border-radius: 8px;
    text-align: center;
    padding: 12px;
}

.contenedor_titulo h1{
    color: #eee;
    font-size: 36px;
}



/*agregar_producto.html----------------------------------*/

.contenedor_form{
    text-align: center;
    margin-top: 46px;
}

.contenedor_form form{
    display: flex;
    flex-direction: column;
}

.contenedor_campo{
    text-align: center;
    margin-bottom: 30px;
}

.cuadro_texto{
    max-width: 300px;
    padding: 8px;
    border-radius: 8px;
    margin-top: 6px;
}

.label_delivery{
    font-size: 18px;
    font-weight: bold;
}

.casilla_verificacion{
    width: 20px;
    height: 20px;
}

.aceptar_form{
    padding: 10px 22px;
    border-radius: 6px;
    cursor: pointer;
    background-color: #22605C;
    color: #fff;
    transition: all 0.5s;
    border: none;
}

.aceptar_form:hover{
    background-color: #2DCABF;
    color: #22605C;
}





/*agregar_proceso----------------------------------*/

.contenedor_mensaje{
    text-align: center;
}

.contenedor_mensaje h2{
    padding: 30px 0px;
}

.contenedor_mensaje a{
    padding: 10px 22px;
    border-radius: 6px;
    cursor: pointer;
    background-color: #22605C;
    color: #fff;
    transition: all 0.5s;
    border: none;
}

.contenedor_mensaje a:hover{
    background-color: #2DCABF;
    color: #22605C;
}





/*cambiar_orden_secciones----------------------------------*/

.contenedor_secciones_orden{
    margin: 0 16px;
    display: flex;
    flex-direction: column;
}

.seccion_numero{
    display: flex;
    justify-content: space-between;
    background-color: #2DCABF;
    padding: 14px;
    margin: 8px 0;
    border-radius: 10px;
}

.seccion_numero input{
    width: 40px;
    height: 40px;
    font-size: 18px;
    border-radius: 10px;
    text-align: center;
    margin-right: 16px;
}











