:root {

    --color-main-dark: #222;
    --color-main-light: #ffffff;
    --font-family: "Roboto", sans-serif;

    --max-width: 1300px;

    /*******************/
    --bar-height: 64px;
    /* alto de header */
    --footer-height: 30px;
    /* alto de footer */
    --bar-bg: #000000a5;
    /* color de fondo */
    --bar-color: #ffffff;
    /* color de texto */
    --z-index-bar: 9999;
    --padding-normal: 10px;
}

/*********************************************************/
* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    background-image: url('/img/fondo_pure.jpg');
    /* cambia la ruta */
    background-size: cover;
    /* la imagen cubre toda la pantalla */
    background-repeat: no-repeat;
    /* evita que se repita */
    background-attachment: fixed;
    /* hace que la imagen quede fija */
    background-position: center;
    /* centrada en pantalla */
    font-family: "Roboto", sans-serif;
    color: white;


}

a {
    text-decoration: none;
    color: white;
}

.wrap {
    height: 100%;
    max-width: var(--max-width);
    margin: 80px auto;
    padding: 20px 17px;
}

.wrap-box {
    border: 1px solid rgb(28, 28, 28);
    border-radius: 14px;
    background-color: #000000bd;
}


/***********************************************************************************/
/* BARRA FIJA */

/* ===== BARRA FIJA ===== */
.bar-header {
    top: 0;
    height: var(--bar-height);
}

.bar-footer {
    bottom: 0;
    height: var(--footer-height);
    display: flex;
    font-size: 12px;

}

.bar-footer-t {
    display: flex;
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
}

.bar-fixed {
    position: fixed;
    left: 0;
    right: 0;
    background: var(--bar-bg);
    color: var(--bar-color);
    z-index: var(--z-index-bar);
}

.block-inner {
    height: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: var(--padding-normal);
    padding-right: var(--padding-normal);
}

.main-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding-top: calc(var(--bar-height) + 0px);
    padding-bottom: calc(var(--bar-height) + 0px);
    padding-left: var(--padding-normal);
    padding-right: var(--padding-normal);
}

/***********************************************************************************/

.msg-center {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    /* centra horizontal */
    align-items: center;
    /* centra vertical */
}

.form-center {
    /*
    background: #ffffff3a;
    border: #000000 solid 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
*/
    padding: 0 0;
   
    border-radius: 12px;    
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* centra horizontal */
    align-items: center;
    /* centra vertical */
}

.form-center img {
    width: 300px;
}

.contact-form {
    background: #ffffff3a;
    border: #000000 solid 1px;
    border-radius: 12px;
    padding: 2rem 3rem;
    line-height: 30px;
}

.contact-form input {
    height: 30px;
    padding-left: 10px;
    border-radius: 10px;
    border: none;
    text-align: center;
}

.contact-form button {
    margin-top: 20px;
    margin-bottom: 20px;
    /*height: 30px;*/
    padding: 10px 30px;
    border-radius: 10px;
    background: #ffffffcb;
    border: #000000 solid 1px;
    cursor: pointer;
    color: #000000;
}

.btn {
    cursor: pointer;
    margin-top: 20px;
    /*height: 30px;*/
    padding: 10px 30px;
    border-radius: 10px;
    background: #ffffffcb;
    border: #000000 solid 1px;
}

.login {
    display: flex;
    gap: 5px;
}

.btn-log {
    cursor: pointer;
    padding: 6px 6px;
    border-radius: 10px;
    background: #ffffffcb;
    border: #000000 solid 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 200px;
}

.logout-icon {

    font-size: 24px;
}

.icono-pesas {
    font-size: 34px;
}

table svg {
    color: #c5d4ff;
}

.boton-enlace {
    display: inline-block;
    /* Permite aplicar margen, padding y tamaño */
    padding: 10px 20px;
    /* Espacio dentro del botón */
    background-color: #e0e0e0;
    /* Color de fondo */
    color: rgb(0, 0, 0);
    /* Color del texto */
    text-align: center;
    /* Centra el texto */
    text-decoration: none;
    /* Elimina el subrayado */
    font-size: 16px;
    /* Tamaño de la fuente */
    margin: 4px 2px;
    /* Espacio alrededor del botón */
    border-radius: 5px;
    /* Bordes redondeados */
    cursor: pointer;
    /* Cambia el cursor al pasar por encima */
    border: none;
    /* Elimina el borde */
}

/* Estilo al pasar el ratón por encima */
.boton-enlace:hover {
    background-color: #6f6f6f;
    color: white;
}

.div-boton-enlace {
    width: 100%;
    text-align: center;
}

/*************************** */

.card {
    border: 1px solid #233044;
    border-radius: 12px;
    padding: 16px 20px;
    background: #171c27;
    color: #fff;
}

.kv {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 10px 16px;
    align-items: start;
}

@media (max-width: 960px) {
    .kv {
        grid-template-columns: 110px 1fr;
    }

    .card {
        font-size: 12px;
    }
}

.kv dt {
    font-weight: 600;
}

.kv dd {
    margin: 0;
}

.muted {
    color: #6b7280;
}

.tabla-productos {
    width: 100%;
    border-collapse: collapse;
}

.tabla-productos th,
.tabla-productos td {
    border: 1px solid #616161ff;
    padding: 8px;
}

.tabla-productos th {
    background: #000000ff;
    text-align: left;
}

.tabla-productos td.num,
.tabla-productos th.num {
    text-align: right;
}

.margin-b {
    margin-bottom: 20px;
}

.card-user dl textarea {
    width: 100%;
    height: 200px;
}




.img-fondo-inicio {
    text-align: center;
    position: relative;
    top: 12vh;
    border-radius: 14px;
}

.img-fondo-inicio img {
    width: 468px;
    /* height: 200px; */
    border-radius: 14px;
    opacity: 0.3;
    border: 1px solid white;
}

.img-fondo-inicio p {
    margin: 0;
    padding: 0;
    text-align: center;
    position: relative;
    top: 27vh;
    border-radius: 14px;
    font-size: 30px;
}

@media only screen and (max-width: 600px) {

    .img-fondo-inicio {
        top: 15vh;
    }

    .img-fondo-inicio img {
        width: 265px;
    }

    .img-fondo-inicio p {
        top: 13vh;
        font-size: 22px;
    }

}


.bmod-contBtn {
    display: flex;
    gap: 10px;
}