body{
    margin:0;
    font-family:Arial, Helvetica, sans-serif;
}

/* LOGIN */

body.login{
    background:#232E4A;
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
}

/* DASHBOARD */

body.dashboard{
    background:#F5F6FA;
    display:block;
    min-height:100vh;
}

.card-login{

    width:385px;

    border-radius:15px;

    border:none;

    overflow:hidden;

}
/*
.logo{

    width:66px;

    height:66px;

    background:#D8C6B2;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:auto;

    margin-top:25px;

    margin-bottom:22px;

}
    */
/*
.logo i{

    font-size:28px;

    color:#23304D;

}
*/
.titulo{

   font-size:18px;

    font-weight:600;

    color:#23304B;

    margin-bottom:8px;

}

.subtitulo{

    color:#7B7B7B;

    font-size:15px;color:#777;

    font-size:15px;

    margin-bottom:28px;
}

.btn-login{

     background:#23304B;

    color:white;

    height:46px;

    border-radius:8px;

    font-weight:600;

}

.btn-login:hover{

    background:#1c2740;

    color:white;

}

.footer{

    text-align:center;

    color:#888;

    font-size:14px;

}

/* ===========================
   SIDEBAR
=========================== */

.sidebar{

    position: fixed;

    top:0;

    left:0;

    width:260px;

    height:100vh;

    background:#232E4A;

    color:white;

    padding-top:30px;

}

.sidebar .logo{

    text-align:center;

    margin-bottom:35px;

}

.sidebar .logo h4{

    margin:0;

    font-weight:bold;

}

.sidebar .logo small{

    color:#d7d7d7;

}

.sidebar ul{

    list-style:none;

    padding:0;

}

.sidebar ul li{

    margin:6px 0;

}

.sidebar ul li a{

    display:block;

    color:white;

    text-decoration:none;

    padding:14px 25px;

    transition:.3s;

}

.sidebar ul li a:hover{

    background:#1c2640;

}

.sidebar ul li i{

    margin-right:10px;

}

/* CONTENIDO */

.contenido{

    margin-left:260px;

    padding:25px;

}


/*==========================
    DASHBOARD
==========================*/

body.dashboard{
    background:#f5f6fa;
    display:block;
    margin:0;
    padding:0;
}

.contenido h2{
    color:#23304B;
    font-weight:700;
    margin-bottom:5px;
}

.contenido p{
    color:#777;
    margin-bottom:30px;
}

.cards{
    display:flex;
    gap:25px;
    flex-wrap:wrap;
}

.card-dashboard{
    width:220px;
    border:none;
    border-radius:12px;
    background:#fff;
    padding:20px;
    box-shadow:0 3px 10px rgba(0,0,0,.08);
    transition:.3s;
}

.card-dashboard:hover{
    transform:translateY(-5px);
}

.card-dashboard i{
    font-size:28px;
    color:#23304B;
    margin-bottom:15px;
}

.card-dashboard h5{
    font-size:20px;
    margin-bottom:10px;
    color:#23304B;
}

.card-dashboard h2{
    font-size:34px;
    color:#23304B;
    margin:0;
}

.tabla{
    margin-top:35px;
    background:#fff;
    padding:20px;
    border-radius:12px;
    box-shadow:0 3px 10px rgba(0,0,0,.08);
}

.btn-azul{
    background:#23304B;
    color:#fff;
    border:none;
}

.btn-azul:hover{
    background:#1b2540;
    color:#fff;
}

.logo-login{

     width:180px;
    max-width:100%;
    height:auto;
    display:block;
    margin:auto;

}

.titulo{

    margin-top:10px;
    margin-bottom:30px;

}