/* =========================================================
   LOGIN - SISREST
========================================================= */

.login100-form{
    display:flex;
    justify-content:center;
    align-items:center;
    padding:50px;
    background:#eef3f9;
    min-height:100vh;
}

/* =========================================================
   PANEL
========================================================= */

.login-panel{
    position:relative;
    width:100%;
    max-width:500px;
    background:#fff;
    border-radius:30px;
    padding:24px 36px 18px;
    overflow:hidden;
    border:1px solid #edf2f8;
    box-shadow:0 18px 45px rgba(0,0,0,.08);
}

/* =========================================================
   DECORACIÓN
========================================================= */

.login-decoration{

    position:absolute;

    right:-90px;
    top:-40px;

    width:260px;
    height:260px;

    border-radius:50%;

    background:
    radial-gradient(circle,
    rgba(46,161,255,.12),
    rgba(46,161,255,.04) 60%,
    transparent 70%);

}

.login-decoration:after{

    content:"";

    position:absolute;

    right:35px;
    top:35px;

    width:150px;
    height:150px;

    border-radius:50%;

    background:rgba(255,255,255,.55);

}

/* =========================================================
   LOGO
========================================================= */

.login-logo{
    width:135px;
    display:block;
    margin:0 auto 14px;
}

/* =========================================================
   TITULO
========================================================= */

.sisrest-title{
    margin:0;
    text-align:center;
    font-size:58px;
    line-height:1;
    font-weight:900;
    letter-spacing:1px;
    background:linear-gradient(90deg,#4d39ff,#1aa7ff);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.sisrest-subtitle{
    margin:8px 0 0;
    text-align:center;
    font-size:18px;
    font-weight:500;
    color:#23364d;
}

/* =========================================================
   DIVISOR
========================================================= */

.divider{
    width:78%;
    height:2px;
    margin:24px auto;
    background:#d9e8fb;
}

/* =========================================================
   BIENVENIDA
========================================================= */

.welcome-box{
    display:flex;
    align-items:center;
    gap:16px;
    margin-bottom:18px;
}

.welcome-icon{
    width:64px;
    height:64px;
    flex:0 0 64px;
    border-radius:50%;
    background:#edf5ff;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#2b8cff;
    font-size:26px;
}

.welcome-title{
    font-size:17px;
    font-weight:700;
    color:#23364d;
    margin-bottom:4px;
}

.welcome-text{
    font-size:14px;
    color:#7b8794;
    line-height:1.45;
}

/* =========================================================
   INPUT
========================================================= */

.wrap-input100{
    position:relative;
    width:100%;
    height:56px;
    background:#fff;
    border:1px solid #dbe4ef;
    border-radius:14px;
    transition:.25s;
}

.wrap-input100::before{
    content:"";
    position:absolute;
    inset:-3px;
    border:2px solid rgba(59,130,246,.18);
    border-radius:16px;
    opacity:0;
    transition:.25s;
    pointer-events:none;
}

.wrap-input100:focus-within{
    border-color:#3b82f6;
}

.wrap-input100:focus-within::before{
    opacity:1;
}

.input100{
    width:100%;
    height:100%;
    border:none;
    outline:none;
    background:transparent;
    padding:0 50px 0 48px;
    font-size:15px;
    color:#23364d;
}

.input-icon{
    position:absolute;
    left:18px;
    top:50%;
    transform:translateY(-50%);
    color:#bcc8d8;
    font-size:16px;
}

#toggleToken{
    position:absolute;
    right:18px;
    top:50%;
    transform:translateY(-50%);
    background:none;
    border:none;
    color:#9aa8b5;
}

/* =========================================================
   BOTÓN
========================================================= */

.container-login100-form-btn{
    margin-top:18px;
}

.login100-form-btn{
    width:100%;
    height:54px;
    border:none;
    border-radius:14px;
    background:linear-gradient(90deg,#3558ff,#2ea2ff);
    color:#fff;
    font-size:16px;
    font-weight:700;
    box-shadow:0 10px 24px rgba(53,88,255,.25);
}

.login100-form-btn i{

    margin-right:10px;

}

.login100-form-btn:hover{

    transform:translateY(-3px);

    box-shadow:
        0 20px 40px rgba(47,92,255,.35);

}

/* =========================================================
   SEPARADOR
========================================================= */

.login-separator{
    width:90px;
    height:1px;
    background:#dfe7f2;
    margin:12px auto;
}

/* =========================================================
   FOOTER
========================================================= */

.login-footer{
    margin-top:5px;
    text-align:center;
}

.footer-link{
    display:inline-block;
    margin-bottom:10px;
    font-size:14px;
    color:#2a8cff;
    font-weight:600;
    text-decoration:none;
}

.footer-image{
    display:block;
    width:100%;
    max-width:300px;
    margin:0 auto;
}

.footer-text{

    margin-top:12px;

    font-size:16px;

    color:#3b82f6;

    font-weight:500;

}

.footer-image:hover{
    opacity:1;
    transform:translateY(-2px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width:1100px){

    .login100-more{
        flex:1 1 45% !important;
        width:45% !important;
        background-position:center center !important;
    }

    .login100-form{
        flex:1 1 55% !important;
        width:55% !important;
        min-width:0 !important;
        max-width:none !important;
        padding:20px !important;
        display:flex !important;
        justify-content:center !important;
        align-items:center !important;
    }

    .login-panel{
        width:100% !important;
        max-width:480px !important;
        margin:0 auto !important;
    }

}

/* =========================================================
   MÓVIL
========================================================= */

@media (max-width:768px){

    .login100-more{
        display:none !important;
    }

    .login100-form{
        width:100% !important;
        min-width:0 !important;
        max-width:100% !important;
        padding:15px !important;
        display:flex !important;
        justify-content:center !important;
        align-items:center !important;
    }

    .login-panel{
        width:100% !important;
        max-width:430px !important;
        min-width:0 !important;
        margin:0 auto !important;
        padding:24px !important;
    }

    .login-logo{
        width:120px !important;
    }

    .sisrest-title{
        font-size:46px !important;
    }

    .sisrest-subtitle{
        font-size:17px !important;
    }

    .footer-image{
        max-width:270px !important;
    }

}













/*==========================================================
MODAL LOCALES
==========================================================*/

.local-modal{
    border:none;
    border-radius:26px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 35px 80px rgba(15,23,42,.22);
}

.modal-backdrop.show{
    opacity:.70;
    backdrop-filter:blur(4px);
}

/*==========================================================
HEADER
==========================================================*/

.local-modal-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    padding:30px;
    border:none;
    background:linear-gradient(180deg,#ffffff,#fbfdff);
}

.local-header{
    display:flex;
    align-items:center;
    gap:18px;
}

.local-header-icon{
    width:62px;
    height:62px;
    border-radius:18px;
    background:linear-gradient(135deg,#e8f4ff,#f6fbff);
    color:#1593ff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
    box-shadow:0 10px 25px rgba(21,147,255,.12);
}

.local-modal-title{
    margin:0;
    font-size:30px;
    font-weight:700;
    color:#20334d;
}

.local-modal-subtitle{
    margin-top:6px;
    font-size:15px;
    color:#718096;
}

.local-modal .close{
    margin:0;
    padding:0;
    border:none;
    background:none;
    font-size:34px;
    color:#9aa5b4;
    opacity:1;
    transition:.25s;
}

.local-modal .close:hover{
    color:#1593ff;
    transform:rotate(90deg);
}

/*==========================================================
BODY
==========================================================*/

.local-modal .modal-body{
    padding:0 26px 28px;
}

/*==========================================================
GRID
==========================================================*/

.local-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:22px;
}

/*==========================================================
CARD
==========================================================*/

.local-card{
    position:relative;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    min-height:210px;
    padding:28px;
    border-radius:22px;
    border:1px solid #dce8f5;
    background:#fff;
    cursor:pointer;
    overflow:hidden;
    transition:all .30s ease;
    box-shadow:0 10px 35px rgba(15,23,42,.05);
}

.local-card:before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(135deg,#2b7fff,#53b6ff);
    opacity:0;
    transition:.30s;
}

.local-card:hover{
    transform:translateY(-8px);
    border-color:#2196ff;
    box-shadow:0 22px 45px rgba(33,150,255,.18);
}

.local-card:hover:before{
    opacity:.05;
}

/*==========================================================
ICONO
==========================================================*/

.local-icon{
    position:relative;
    z-index:2;
    width:84px;
    height:84px;
    border-radius:22px;
    background:#eef7ff;
    color:#1698ff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:38px;
    margin-bottom:24px;
    transition:.30s;
}

.local-card:hover .local-icon{
    transform:scale(1.08) rotate(-5deg);
    background:#1698ff;
    color:#fff;
}

/*==========================================================
NOMBRE
==========================================================*/

.local-name{
    position:relative;
    z-index:2;
    font-size:28px;
    font-weight:700;
    color:#24364d;
    text-align:center;
    text-transform:uppercase;
    letter-spacing:.3px;
}

/*==========================================================
SUBTEXTO
==========================================================*/

.local-select{
    position:relative;
    z-index:2;
    margin-top:14px;
    color:#8a97a7;
    font-size:14px;
    transition:.30s;
}

.local-card:hover .local-select{
    color:#1698ff;
}

/*==========================================================
ACTIVO
==========================================================*/

.local-card.active{
    background:linear-gradient(135deg,#2c61ff,#1fa0ff);
    border-color:transparent;
    box-shadow:0 25px 45px rgba(43,127,255,.35);
}

.local-card.active:before{
    display:none;
}

.local-card.active .local-icon{
    background:rgba(255,255,255,.18);
    color:#fff;
    transform:none;
}

.local-card.active .local-name,
.local-card.active .local-select{
    color:#fff;
}

/*==========================================================
RESPONSIVE
==========================================================*/

@media(max-width:768px){

    .local-modal-header{
        padding:22px;
    }

    .local-header{
        gap:14px;
    }

    .local-header-icon{
        width:52px;
        height:52px;
        font-size:24px;
    }

    .local-modal-title{
        font-size:22px;
    }

    .local-modal-subtitle{
        font-size:14px;
    }

    .local-grid{
        grid-template-columns:1fr;
    }

    .local-card{
        min-height:180px;
    }

    .local-name{
        font-size:22px;
    }

}





























/*==========================================================
MODAL PERFIL
==========================================================*/

.perfil-modal{
    border:none;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 25px 60px rgba(15,23,42,.20);
}

/*==========================================================
HEADER
==========================================================*/

.perfil-header{
    position:relative;
    padding:35px 35px 20px;
    text-align:center;
    background:#fff;
}

.perfil-header .close{
    position:absolute;
    top:18px;
    right:20px;
    font-size:32px;
    color:#9aa5b4;
    opacity:1;
    transition:.25s;
}

.perfil-header .close:hover{
    color:#1698ff;
    transform:rotate(90deg);
}

.perfil-icon{
    width:78px;
    height:78px;
    margin:0 auto 18px;
    border-radius:22px;
    background:linear-gradient(135deg,#eef7ff,#f8fbff);
    color:#1698ff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:40px;
    box-shadow:0 10px 25px rgba(22,152,255,.12);
}

.perfil-title{
    margin:0;
    font-size:28px;
    font-weight:700;
    color:#24364d;
}

.perfil-subtitle{
    margin-top:8px;
    color:#7b8794;
    font-size:15px;
}

/*==========================================================
BODY
==========================================================*/

.perfil-body{
    padding:0 35px 25px;
}

.perfil-label{
    display:block;
    margin-bottom:10px;
    font-size:14px;
    font-weight:600;
    color:#5c6b7a;
}

.perfil-select{
    height:56px;
    border-radius:14px;
    border:1px solid #dbe7f5;
    font-size:16px;
    box-shadow:none;
    transition:.25s;
}

.perfil-select:focus{
    border-color:#1698ff;
    box-shadow:0 0 0 4px rgba(22,152,255,.12);
}

/*==========================================================
FOOTER
==========================================================*/

.perfil-footer{
    padding:0 35px 30px;
}

.btn-seleccionar{
    width:100%;
    height:54px;
    border:none;
    border-radius:14px;
    background:linear-gradient(90deg,#2d63ff,#2fa4ff);
    color:#fff;
    font-size:16px;
    font-weight:700;
    transition:.25s;
    box-shadow:0 12px 30px rgba(47,92,255,.22);
}

.btn-seleccionar:hover{
    transform:translateY(-2px);
    box-shadow:0 18px 35px rgba(47,92,255,.30);
}

.btn-cancelar{
    display:block;
    width:100%;
    margin-bottom:15px;
    background:none;
    border:none;
    color:#7b8794;
    font-size:15px;
    font-weight:600;
    transition:.25s;
}

.btn-cancelar:hover{
    color:#1698ff;
}

/*==========================================================
RESPONSIVE
==========================================================*/

@media(max-width:576px){

    .perfil-header{
        padding:28px 22px 18px;
    }

    .perfil-body{
        padding:0 22px 20px;
    }

    .perfil-footer{
        padding:0 22px 22px;
    }

    .perfil-title{
        font-size:22px;
    }

    .perfil-icon{
        width:66px;
        height:66px;
        font-size:34px;
    }

}




















/*==========================================================
LISTA DE PERFILES
==========================================================*/

.perfil-lista{
    display:flex;
    flex-direction:column;
    gap:16px;
    margin-top:10px;
}

/*==========================================================
CARD
==========================================================*/

.perfil-item{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:18px 22px;
    border:1px solid #dfe8f5;
    border-radius:18px;
    background:#ffffff;
    cursor:pointer;
    transition:.25s;
    box-shadow:0 6px 18px rgba(15,23,42,.05);
}

.perfil-item:hover{
    border-color:#1698ff;
    transform:translateY(-3px);
    box-shadow:0 16px 35px rgba(22,152,255,.16);
}

/*==========================================================
LADO IZQUIERDO
==========================================================*/

.perfil-item-left{
    display:flex;
    align-items:center;
    gap:18px;
}

/*==========================================================
ICONO
==========================================================*/

.perfil-avatar{
    width:60px;
    height:60px;
    border-radius:16px;
    background:#eef7ff;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#1698ff;
    font-size:28px;
    transition:.25s;
}

/*==========================================================
TEXTOS
==========================================================*/

.perfil-item-title{
    font-size:18px;
    font-weight:700;
    color:#24364d;
    text-transform:uppercase;
}

.perfil-item-desc{
    margin-top:4px;
    font-size:14px;
    color:#7f8b98;
}

/*==========================================================
RADIO
==========================================================*/

.perfil-radio{
    width:42px;
    display:flex;
    justify-content:center;
    align-items:center;
}

.perfil-radio i{
    font-size:24px;
    color:#b9c6d6;
    transition:.25s;
}

/*==========================================================
ACTIVO
==========================================================*/

.perfil-item.active{
    border-color:#1698ff;
    background:linear-gradient(135deg,#2f5cff,#1fa0ff);
    box-shadow:0 18px 35px rgba(47,92,255,.28);
}

.perfil-item.active .perfil-avatar{
    background:rgba(255,255,255,.16);
    color:#ffffff;
}

.perfil-item.active .perfil-item-title,
.perfil-item.active .perfil-item-desc{
    color:#ffffff;
}

.perfil-item.active .perfil-radio i{
    color:#ffffff;
}

/*==========================================================
BOTÓN
==========================================================*/

.btn-seleccionar{
    width:100%;
    margin-top:24px;
    height:54px;
    border:none;
    border-radius:14px;
    background:linear-gradient(90deg,#3558ff,#2ea2ff);
    color:#fff;
    font-size:17px;
    font-weight:700;
    transition:.25s;
    box-shadow:0 12px 25px rgba(53,88,255,.28);
}

.btn-seleccionar:hover{
    transform:translateY(-2px);
    box-shadow:0 18px 35px rgba(53,88,255,.35);
}

.btn-seleccionar i{
    margin-right:8px;
}




.sisrest-logo-main{
    display:block;
    width:100%;
    max-width:260px;
    margin:8px auto 0;
}

.login-logo{
    width:125px;
    margin:0 auto 8px;
}

.login-divider{
    width:78%;
    height:2px;
    margin:18px auto 26px;
    background:#d9e8fb;
}

.welcome-box{
    margin-top:8px;
    margin-bottom:22px;
}

.login100-form-btn{
    height:58px;
    font-size:17px;
}

.login-footer{
    margin-top:12px;
}

.sisrest-logo-main{

    display:block;

    max-width:255px;

    margin:4px auto 2px;

}


.login-panel{
    position:relative;
    overflow:hidden;
    background:
        linear-gradient(180deg,#ffffff 0%,#fcfdff 55%,#f8fbff 100%);
    border:1px solid #edf2f8;
    border-radius:30px;
    box-shadow:
        0 18px 45px rgba(0,0,0,.08),
        0 0 0 1px rgba(255,255,255,.6) inset;
}

.sisrest-logo-main{
    position:relative;
    display:block;
    max-width:255px;
    margin:4px auto 2px;
    z-index:2;
}

.sisrest-logo-main::after{
    display:none;
}

.logo-main{
    position:relative;
    display:inline-block;
}

.logo-main:before{
    content:"";
    position:absolute;
    left:50%;
    top:45%;
    transform:translate(-50%,-50%);
    width:220px;
    height:220px;
    border-radius:50%;
    background:radial-gradient(rgba(55,130,255,.10),transparent 70%);
    z-index:0;
}

.wrap-input100{

    background:#fff;

    border:1px solid #dfe8f4;

    box-shadow:
        inset 0 2px 5px rgba(0,0,0,.02),
        0 3px 12px rgba(0,0,0,.03);

}

.login100-form-btn{

    position:relative;

    overflow:hidden;

}

.login100-form-btn:before{

    content:"";

    position:absolute;

    left:-120px;

    top:0;

    width:70px;

    height:100%;

    transform:skewX(-25deg);

    background:rgba(255,255,255,.30);

    transition:.8s;

}

.login100-form-btn:hover:before{

    left:130%;

}

.login-decoration{

    width:320px;

    height:320px;

    right:-120px;

    top:-90px;

}

.sisrest-logo-main{

    transition:.35s;

}

.sisrest-logo-main:hover{

    transform:scale(1.02);

}

.footer-image{

    opacity:.92;

    transition:.35s;

}

.footer-image:hover{

    opacity:1;

    transform:translateY(-3px);

}







.welcome-icon{

    background:linear-gradient(135deg,#eef6ff,#dcecff);

    color:#2f80ff;

    box-shadow:0 8px 20px rgba(47,128,255,.12);

}





/*==================================================
FOCUS MODERNO - LOGIN SISREST
==================================================*/

.focus-input100-modern{

    width:calc(100% + 2px);
    height:calc(100% + 2px);

    top:-1px;
    left:-1px;

    border:2px solid rgba(47,128,255,.22);
    border-radius:16px;

    visibility:hidden;
    opacity:0;

    transform:none;

    transition:
        opacity .25s,
        border-color .25s;

}

.input100:focus + .focus-input100-modern{

    visibility:visible;
    opacity:1;

    transform:none;

}

.input100{

    font-size:19px;

    font-weight:600;

    color:#1f2937;

    letter-spacing:.5px;

}