@font-face {
    font-family: 'Inter';
    src: url(../fonts/Inter/Inter-VariableFont_opsz,wght.ttf);
}

:root{
    --negro: #0A0A0A;
    --negroalfa: #0A0A0A88;
    --blanco: #FFFFFF;
    --primario: #4A5565;
    --primarioalfa: #4A556588;
    --amarillo: #FEF9C2;
    --gris: #F3F4F6;
    --gris2: #D1D5DC;
    --fondogris: #F9FAFB;
    --rojo: #DCFCE7;
    --chat: #e0fcd7;
}
.gris{
    color: var(--gris);
}
.primario{
    color: var(--primario);
}
.amarillo{
    color: var(--amarillo);
}
.rojo{
    color: var(--rojo);
}
body{
    color: var(--negro);
    background: var(--blanco);
    background-size: cover !important;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    overflow-x: hidden;
}
.container{
    position: relative;
    max-width: none;
}
.cursor{
    cursor: pointer;
}
.contenido{
    background-color: var(--fondogris);
    min-height: 100vh;
    max-width: 1920px;
}
.contenido-auth{
   height: 100vh;
}

.topbar{
    background-color: var(--blanco);
    border-bottom: 1px solid #E5E7EB;
    padding: 10px;
}

/* ----------------------- */
.link{
    color: var(--negro);
    text-decoration: none;
}
.link:hover,
.link:focus,
.link:active{
    color: var(--negroalfa);
}
h1{
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0px;
}
h2{
    font-size: 1.6rem;
}
h3{
    font-size: 1.3rem;
}
h4{
    font-size: 1.2rem;
}

/* --------- LOGIN --------- */
.login-fondo{
    background: rgba(0,0,0,0.6) url(/images/fondo-login.jpg) no-repeat center center / cover;
    background-blend-mode:color;
    padding-left: 10%;
}
.input-login{
    border-radius: 10px;
    font-size: 0.9rem;
    padding: 10px;
    color: var(--primario);
    border: none;
    background-color: var(--gris);
}
.invalid{
    border: 1px solid var(--rojo) !important;
    background-color: var(--rojo) !important;
}

/* Icono de ojos */
.row-eye{
    position: relative;
}
.sd-imageneye{
    opacity: 0.7;
    width: 22px;
    position: absolute;
    bottom: 10px;
    right: 20px;
    cursor: pointer;
}

/* Descripción contraseña */
.password-list{
    display: grid;
    line-height: 14px;
}
/* ---------- END LOGIN ------------- */


.logo-sso{
    background-color: var(--gris);
    border-radius: 10px;
    padding: 10px;
    width: 50px;
}
/* --------- FORMULARIOS --------- */
.form-label{
    margin-bottom: 5px;
}

.sd-input{
    font-size: 0.9rem;
    color: var(--primario);
    border: 1px solid var(--gris2);
    background-color: var(--blanco);
}
.sd-input:focus{
    border: 1px solid var(--primario);
    box-shadow: none !important;
}
.sd-input::placeholder{
    color: rgba(0,0,0,0.3);
}

/* ------ CARDS ---------- */
.card-simple{
    background-color: var(--blanco);
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    height: fit-content;
    padding: 10px;
}
.card-simple .title{
    font-size: 18px !important;
    font-weight: 500;
}
.card-simple .icon{
    width: 20px;
}
.card-simple .numero{
    font-size: 24px;
    font-weight: 300;
}
.card-simple .texto{
    font-size: 14px;
    color: var(--primario);
}

/* ------- CHATBOT ---------- */
.chatbot-messages{
    border-radius: 10px;
    margin: 10px 0px;
    padding: 10px 15px;
    width: 70%;
}
.received{
    background-color: var(--blanco);
    justify-self: start;
}
.send{
    background-color: var(--chat);
    justify-self: end;
}
.loading{
    background-color: var(--rojo);
    justify-self: start;
}
/* ------- END CHATBOT ----------*/


