/* ===================================================
   GLOBAL
=================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#F8FAFC;
}

/* ===================================================
   SIDEBAR
=================================================== */

.sidebar{

    width:250px;
    min-height:100vh;
    background:#1E293B;
    position:fixed;
    left:0;
    top:0;

}

.sidebar h3{

    color:white;
    font-weight:600;
    margin-bottom:20px;

}

.sidebar hr{

    border-color:rgba(255,255,255,.2);

}

.sidebar a{

    display:block;
    color:#CBD5E1;
    padding:14px 25px;
    text-decoration:none;
    transition:.3s;
    font-size:15px;

}

.sidebar a i{

    margin-right:10px;

}

.sidebar a:hover{

    background:#334155;
    color:white;

}

/* ===================================================
   CONTENT
=================================================== */

.content{

    margin-left:250px;
    padding:25px;

}

.navbar{

    border-radius:15px;
    padding:15px 25px;
    background:white;

}

.navbar-brand{

    font-weight:600;
    color:#0F172A;

}

/* ===================================================
   CARD
=================================================== */

.card{

    border:none;
    border-radius:16px;
    transition:.3s;
    background:white;

}

.card:hover{

    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,.1);

}

.card-body h5{

    color:#64748B;
    font-size:15px;

}

.card-body h2{

    font-weight:bold;

}

/* ===================================================
   TABLE
=================================================== */

.table{

    background:white;
    border-radius:15px;
    overflow:hidden;

}

.table thead{

    background:#334155;
    color:white;

}

.table th{

    border:none;
    text-align:center;
    padding:15px;

}

.table td{

    text-align:center;
    vertical-align:middle;
    padding:12px;

}

/* ===================================================
   BADGE
=================================================== */

.badge{

    padding:8px 15px;
    border-radius:20px;

}

/* ===================================================
   LOGIN
=================================================== */

.login-page{

    background:#E2E8F0;

}

.login-left{

    background:#1E293B;
    color:white;

    display:flex;
    justify-content:center;
    align-items:center;

    min-height:550px;

}

.login-left h2{

    font-weight:bold;

}

.login-left p{

    color:#CBD5E1;

}

.input-group-text{

    background:#334155;
    color:white;
    border:none;

}

.form-control{

    padding:12px;

}

.form-control:focus{

    box-shadow:none;
    border-color:#3B82F6;

}

.btn-primary{

    background:#3B82F6;
    border:none;
    border-radius:10px;
    padding:12px;

}

.btn-primary:hover{

    background:#2563EB;

}

.alert{

    border-radius:10px;

}

/* ===================================================
   RESPONSIVE
=================================================== */

@media (max-width:768px){

.sidebar{

    width:100%;
    min-height:auto;
    position:relative;

}

.content{

    margin-left:0;

}

.login-left{

    display:none;

}

}