/*---------------------------------------------------------------------------------------------------------------
   AUTOR          : DIEGO BUSTOS PEÑA
   FECHA CREACIÓN : 09-06-2026
   DESCRIPCIÓN    : CSS DE LAS LINEAS QUE SEPARA Y DECORA AL FORMUARIO
----------------------------------------------------------------------------------------------------------------*/

/* BARRA INSTITUCIONAL */
.barra-institucional {
    width  : 100%;
    margin : .5rem 0 1.2rem;
}

/* BARRA AZUL */
.barra-primaria {
    width         : 100%;
    height        : 6px;
    overflow      : hidden;
    border-radius : 50px;
    background    : linear-gradient(
        90deg,
        #234d96 0%,
        #3f67aa 100%
    );
    box-shadow    : 0 2px 8px rgba(35,77,150,.18);
}

/* BARRA DORADA */
.barra-secundaria {
    width         : 68%;
    height        : 100%;
    border-radius : 50px;
    background    : linear-gradient(
        90deg,
        #f3c55a 0%,
        #d89f2d 100%
    );
    box-shadow    : 0 1px 6px rgba(216,159,45,.28);
}