/* static/public/public_layout.css */

html,
body{
    margin:0;
    height:100%;
    font-family: "Inter", sans-serif; /* 🔴 CLAVE */
}

/* fondo de la app */

.public-app{

    min-height:100vh;

    background-color:#e7e3da;

    background-image:
    url("/static/img/p_login_pqia_1920_x_1080_a.png");

    background-size:contain;
    background-position:center center;
    background-repeat:no-repeat;

    display:flex;

    align-items:center;

    padding-left:51vw;

    box-sizing:border-box;
}

.public-container{
    flex:1;
    display:flex;
    align-items:center;
}



/* contenedor */

.public-content{
    width:420px;
    max-width:90%;
}

/* tarjeta */

.public-card{
    background:white;
    padding:40px;
    border-radius:12px;
    box-shadow:0 10px 40px rgba(0,0,0,0.08);
}

/* FOOTER*/

.public-footer{
    position:absolute;
    bottom:25px;
    left:0;
    width:100%;

    text-align:center;
    font-size:11px;
    color:#777;
}

/* Política de privacidad */
.public-footer a{
    color:#4c6a6f;
    text-decoration:underline;   /* 🔴 siempre subrayado */
    margin-right:6px;
}

.public-footer a:hover{
    text-decoration:underline;
}


