*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Segoe UI',sans-serif;
    background:#f4f6f9;
}

.login-page{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:20px;
}

.login-card{
    width:100%;
    max-width:420px;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.1);
}

.login-header{
    background:linear-gradient(
        135deg,
        #0d6efd,
        #0a58ca
    );
    color:white;
    text-align:center;
    padding:30px;
}

.login-header h2{
    margin-top:10px;
}

.login-body{
    padding:30px;
}

.form-group{
    margin-bottom:15px;
}

.form-group label{
    display:block;
    margin-bottom:5px;
    font-weight:600;
}

.form-control{
    width:100%;
    padding:12px;
    border:1px solid #ddd;
    border-radius:10px;
}

.btn-login{
    width:100%;
    padding:12px;
    border:none;
    background:#0d6efd;
    color:white;
    border-radius:10px;
    cursor:pointer;
    font-weight:bold;
}

.btn-login:hover{
    background:#0b5ed7;
}

.alert{
    padding:12px;
    border-radius:10px;
    margin-bottom:15px;
}

.alert-danger{
    background:#f8d7da;
    color:#842029;
}

.footer-login{
    text-align:center;
    margin-top:15px;
    color:#666;
}
/*==================================================
DASHBOARD ADMIN MODERN
==================================================*/

/* ==========================
   CARDS
========================== */

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
    gap:20px;
    margin:25px 0;
}

.card-box{
    position:relative;
    overflow:hidden;
    background:#fff;
    border-radius:22px;
    padding:25px;
    border:1px solid #edf2f7;
    box-shadow:0 10px 35px rgba(15,23,42,.06);
    transition:.35s;
}

.card-box:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 45px rgba(37,99,235,.15);
}

.card-box::before{
    content:'';
    position:absolute;
    width:170px;
    height:170px;
    border-radius:50%;
    right:-70px;
    top:-70px;
    background:rgba(255,255,255,.15);
}

.card-box i{
    width:65px;
    height:65px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:18px;
    color:#fff;
    font-size:24px;
    margin-bottom:20px;
}

.card-box h4{
    margin:0;
    color:#64748b;
    font-size:14px;
    font-weight:600;
}

.card-box h2{
    margin-top:10px;
    font-size:30px;
    font-weight:700;
    color:#0f172a;
}

/*==========================
CARD COLORS
==========================*/

.blue i{
    background:linear-gradient(135deg,#2563eb,#60a5fa);
}

.green i{
    background:linear-gradient(135deg,#10b981,#34d399);
}

.orange i{
    background:linear-gradient(135deg,#f59e0b,#fbbf24);
}

.red i{
    background:linear-gradient(135deg,#ef4444,#fb7185);
}

.purple i{
    background:linear-gradient(135deg,#8b5cf6,#a78bfa);
}

.cyan i{
    background:linear-gradient(135deg,#06b6d4,#38bdf8);
}

/*==================================================
ALERT DEMO
==================================================*/

.alert-demo{
    display:flex;
    align-items:center;
    gap:15px;
    padding:18px 22px;
    margin-bottom:25px;
    border-radius:18px;
    background:linear-gradient(135deg,#fff7cc,#fff3b0);
    border-left:5px solid #f59e0b;
    box-shadow:0 10px 30px rgba(245,158,11,.15);
    color:#92400e;
    font-size:15px;
}

.alert-demo i{
    font-size:30px;
}

/*==================================================
PUSAT NOTIFIKASI
==================================================*/

.notif-card{

background:#fff;
border-radius:22px;
padding:25px;
margin-bottom:25px;
box-shadow:0 10px 35px rgba(15,23,42,.06);
border:1px solid #edf2f7;

}

.notif-header{

display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:25px;

}

.notif-header h3{

margin:0;
font-size:22px;
font-weight:700;
color:#1e293b;

}

.notif-header h3 i{

color:#2563eb;
margin-right:8px;

}

.notif-header small{

display:block;
margin-top:6px;
color:#64748b;
font-size:13px;

}

.notif-total{

background:linear-gradient(135deg,#2563eb,#3b82f6);
color:#fff;
padding:9px 18px;
border-radius:30px;
font-size:13px;
font-weight:600;

}

.notif-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(290px,1fr));
gap:18px;

}

.notif-item{

display:flex;
align-items:center;
gap:18px;
padding:18px;
background:#fff;
border:1px solid #edf2f7;
border-radius:18px;
text-decoration:none;
color:#1e293b;
transition:.3s;

}

.notif-item:hover{

transform:translateY(-5px);
border-color:#2563eb;
box-shadow:0 15px 35px rgba(37,99,235,.15);

}

.notif-icon{

width:60px;
height:60px;
border-radius:18px;
display:flex;
align-items:center;
justify-content:center;
font-size:24px;
color:#fff;
flex-shrink:0;

}

.notif-content{

flex:1;

}

.notif-content h4{

margin:0;
font-size:17px;
font-weight:700;

}

.notif-content p{

margin-top:6px;
font-size:14px;
color:#64748b;
line-height:1.5;

}

.notif-content strong{

color:#2563eb;

}

.notif-arrow{

font-size:18px;
color:#94a3b8;
transition:.3s;

}

.notif-item:hover .notif-arrow{

transform:translateX(5px);
color:#2563eb;

}

.bg-warning{

background:linear-gradient(135deg,#f59e0b,#fbbf24);

}

.bg-danger{

background:linear-gradient(135deg,#ef4444,#fb7185);

}

.bg-primary{

background:linear-gradient(135deg,#2563eb,#60a5fa);

}

.bg-info{

background:linear-gradient(135deg,#06b6d4,#38bdf8);

}

.notif-empty{

text-align:center;
padding:60px 20px;

}

.notif-empty i{

font-size:70px;
color:#22c55e;
margin-bottom:18px;

}

.notif-empty h4{

margin-bottom:10px;
font-size:24px;
font-weight:700;
color:#16a34a;

}

.notif-empty p{

color:#64748b;

}

/*==================================================
TABLE
==================================================*/

.table-card{

background:#fff;
border-radius:22px;
padding:25px;
margin-top:25px;
box-shadow:0 10px 35px rgba(15,23,42,.06);

}

.table-card h3{

margin-bottom:20px;
font-size:22px;
font-weight:700;
color:#1e293b;

}

.table-responsive{

overflow-x:auto;

}

.table-card table{

width:100%;
border-collapse:collapse;

}

.table-card table th{

background:#f8fafc;
padding:14px;
font-size:14px;
font-weight:700;
color:#475569;
text-align:left;

}

.table-card table td{

padding:14px;
border-top:1px solid #eef2f7;
font-size:14px;

}

.table-card table tr:hover{

background:#f8fbff;

}

/*==================================================
BADGE
==================================================*/

.badge{

display:inline-block;
padding:6px 14px;
border-radius:30px;
font-size:12px;
font-weight:600;

}

.badge-success{

background:#dcfce7;
color:#15803d;

}

.badge-warning{

background:#fef3c7;
color:#b45309;

}

.badge-danger{

background:#fee2e2;
color:#b91c1c;

}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:992px){

.cards{

grid-template-columns:repeat(auto-fit,minmax(200px,1fr));

}

}

@media(max-width:768px){

.cards{

grid-template-columns:1fr;

}

.card-box{

padding:22px;

}

.card-box h2{

font-size:26px;

}

.notif-header{

flex-direction:column;
align-items:flex-start;
gap:15px;

}

.notif-total{

align-self:flex-start;

}

.notif-grid{

grid-template-columns:1fr;

}

.notif-item{

padding:16px;

}

.notif-icon{

width:55px;
height:55px;
font-size:22px;

}

.alert-demo{

flex-direction:column;
align-items:flex-start;

}

}