@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ==========================================================
   IMPORT FONT
========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ==========================================================
   ROOT
========================================================== */

:root{

    --primary:#0b3d6d;
    --primary-dark:#082a4b;
    --primary-light:#2f7dc3;

    --secondary:#2ea5ff;

    --success:#28c76f;
    --danger:#ea5455;
    --warning:#ff9f43;

    --white:#ffffff;
    --black:#111827;

    --text:#1f2937;
    --muted:#6b7280;

    --border:#e7edf5;

    --bg:#f4f7fb;

    --shadow:
        0 15px 35px rgba(0,0,0,.08);

    --radius:18px;

}

/* ==========================================================
   RESET
========================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Inter',sans-serif;
    background:var(--bg);
    color:var(--text);

    font-size:14px;

    overflow-x:hidden;

}

a{
    text-decoration:none;
}

img{
    max-width:100%;
}

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

.login-page{

    min-height:100vh;

    background:
    linear-gradient(135deg,
    #03192d 0%,
    #0b3d6d 45%,
    #1d6ab3 100%);

    overflow:hidden;

    position:relative;

}

/* Background Circle */

.login-page::before{

    content:'';

    position:absolute;

    width:700px;
    height:700px;

    background:rgba(255,255,255,.08);

    border-radius:50%;

    top:-250px;
    left:-200px;

}

.login-page::after{

    content:'';

    position:absolute;

    width:500px;
    height:500px;

    background:rgba(255,255,255,.05);

    border-radius:50%;

    right:-120px;
    bottom:-120px;

}

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

.login-shell{

    min-height:100vh;

    display:flex;

    position:relative;

    z-index:2;

}

/* ==========================================================
   LEFT PANEL
========================================================== */

.login-brand-panel{

    width:55%;

    padding:70px;

    color:white;

    display:flex;

    justify-content:center;

    flex-direction:column;

}

.brand-mark{

    width:90px;
    height:90px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(15px);

    border-radius:25px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

    font-weight:800;

    border:1px solid rgba(255,255,255,.15);

    box-shadow:0 20px 45px rgba(0,0,0,.2);

}

.eyebrow{

    margin-top:30px;

    font-size:13px;

    text-transform:uppercase;

    letter-spacing:3px;

    font-weight:700;

    opacity:.8;

}

.login-brand-panel h1{

    font-size:54px;

    line-height:1.15;

    margin:18px 0;

    max-width:620px;

    font-weight:800;

}

.login-brand-panel p{

    font-size:17px;

    line-height:1.9;

    color:#d7e8fa;

    max-width:620px;

}

/* ==========================================================
   FEATURE
========================================================== */

.feature-row{

    display:flex;

    flex-wrap:wrap;

    gap:15px;

    margin-top:45px;

}

.feature-row span{

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.12);

    backdrop-filter:blur(10px);

    border-radius:50px;

    padding:13px 20px;

    font-size:13px;

    transition:.3s;

}

.feature-row span:hover{

    transform:translateY(-4px);

    background:rgba(255,255,255,.18);

}

/* ==========================================================
   RIGHT PANEL
========================================================== */

.login-form-panel{

    flex:1;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:40px;

}

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

.login-card{

    width:100%;

    max-width:470px;

    padding:45px;

    background:rgba(255,255,255,.88);

    backdrop-filter:blur(18px);

    border-radius:28px;

    border:1px solid rgba(255,255,255,.4);

    box-shadow:

    0 30px 60px rgba(0,0,0,.18);

    animation:fadeLogin .8s;

}

@keyframes fadeLogin{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:none;

    }

}

.login-card h2{

    font-size:34px;

    font-weight:800;

    color:var(--primary-dark);

    margin-bottom:8px;

}

/* ==========================================================
   FORM
========================================================== */

.form-label{

    font-weight:600;

    color:#475569;

}

.form-control{

    border-radius:14px;

    border:1px solid #d9e5f2;

    min-height:56px;

    padding:14px 18px;

    font-size:15px;

    transition:.3s;

    box-shadow:none;

}

.form-control:focus{

    border-color:#2f7dc3;

    box-shadow:

    0 0 0 .25rem rgba(38,132,255,.15);

}

/* ==========================================================
   BUTTON
========================================================== */

.btn{

    border-radius:14px;

    min-height:56px;

    font-weight:700;

    transition:.35s;

}

.btn-navy{

    background:linear-gradient(135deg,#0b3d6d,#1f6db4);

    color:white;

    border:none;

}

.btn-navy:hover{

    color:white;

    transform:translateY(-3px);

    box-shadow:

    0 15px 25px rgba(0,72,150,.35);

}

/* ==========================================================
   ALERT
========================================================== */

.alert{

    border:none;

    border-radius:14px;

    font-size:13px;

}

/* ==========================================================
   FOOTER
========================================================== */

.login-card .small{

    font-size:12px;

    margin-top:25px;

    color:#64748b;

}

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

@media(max-width:991px){

.login-brand-panel{

display:none;

}

.login-form-panel{

width:100%;

padding:25px;

}

.login-card{

max-width:520px;

}

}

@media(max-width:576px){

.login-card{

padding:30px 25px;

border-radius:20px;

}

.login-card h2{

font-size:28px;

}

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

.sidebar{

    position:fixed;

    left:0;
    top:0;
    bottom:0;

    width:280px;

    background:
    linear-gradient(
        180deg,
        #062543 0%,
        #0b3d6d 45%,
        #0f5b98 100%
    );

    color:#fff;

    padding:20px;

    z-index:999;

    overflow-y:auto;

    box-shadow:
    8px 0 35px rgba(0,0,0,.12);

}

/* Scrollbar */

.sidebar::-webkit-scrollbar{

    width:6px;

}

.sidebar::-webkit-scrollbar-thumb{

    background:rgba(255,255,255,.15);

    border-radius:20px;

}

/* ==========================================================
   BRAND
========================================================== */

.brand{

    display:flex;

    align-items:center;

    gap:15px;

    padding:10px 10px 25px;

    margin-bottom:20px;

    border-bottom:1px solid rgba(255,255,255,.08);

}

.brand-mark.small-mark{

    width:50px;
    height:50px;

    border-radius:16px;

    font-size:16px;

}

.brand strong{

    display:block;

    font-size:15px;

    font-weight:700;

    color:white;

}

.brand small{

    display:block;

    margin-top:4px;

    font-size:11px;

    color:#bfd4ea;

}

/* ==========================================================
   MENU LABEL
========================================================== */

.menu-label{

    color:#8eb1d1;

    text-transform:uppercase;

    font-size:11px;

    font-weight:700;

    letter-spacing:2px;

    padding:8px 14px;

    margin-top:10px;

}

/* ==========================================================
   MENU
========================================================== */

.sidebar .nav{

    gap:6px;

}

.sidebar .nav-link{

    display:flex;

    align-items:center;

    gap:15px;

    color:#dce7f4;

    padding:14px 16px;

    border-radius:14px;

    transition:.35s;

    font-size:14px;

    font-weight:600;

}

.sidebar .nav-link i{

    width:22px;

    text-align:center;

    font-size:16px;

}

/* Hover */

.sidebar .nav-link:hover{

    background:rgba(255,255,255,.10);

    color:white;

    transform:translateX(6px);

}

/* Active */

.sidebar .nav-link.active{

    background:white;

    color:#0b3d6d;

    box-shadow:

    0 12px 25px rgba(0,0,0,.18);

}

.sidebar .nav-link.active i{

    color:#0b3d6d;

}

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

.sidebar-bottom{

    position:absolute;

    left:20px;

    right:20px;

    bottom:20px;

    border-top:1px solid rgba(255,255,255,.10);

    padding-top:18px;

}

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

.main-content{

    margin-left:280px;

    min-height:100vh;

    background:#f4f7fb;

}

/* ==========================================================
   TOPBAR
========================================================== */

.topbar{

    height:80px;

    background:white;

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:0 30px;

    border-bottom:1px solid #e9eef5;

    position:sticky;

    top:0;

    z-index:100;

}

.topbar strong{

    display:block;

    font-size:18px;

    font-weight:700;

    color:#16304f;

}

.topbar small{

    color:#8b97a7;

    font-size:12px;

}

.topbar-left{

display:flex;

align-items:center;

gap:18px;

}

.menu-toggle{

width:46px;

height:46px;

border:none;

border-radius:12px;

background:#edf4fb;

color:#0b3d6d;

font-size:18px;

cursor:pointer;

transition:.3s;

display:flex;

align-items:center;

justify-content:center;

}

.menu-toggle:hover{

background:#0b3d6d;

color:#fff;

transform:rotate(90deg);

}

.sidebar-overlay{

position:fixed;

left:0;

top:0;

right:0;

bottom:0;

background:rgba(0,0,0,.45);

opacity:0;

visibility:hidden;

transition:.3s;

z-index:998;

}

.sidebar-overlay.show{

opacity:1;

visibility:visible;

}

/* ==========================================================
   USER CHIP
========================================================== */

.user-chip{

    display:flex;

    align-items:center;

    gap:15px;

}

.user-chip strong{

    font-size:14px;

    margin:0;

}

.user-chip small{

    display:block;

    margin-top:2px;

    color:#7b8796;

}

/* ==========================================================
   AVATAR
========================================================== */

.avatar{

    width:48px;

    height:48px;

    border-radius:50%;

    background:

    linear-gradient(
    135deg,
    #0b3d6d,
    #2d7bc3);

    color:white;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:700;

    font-size:18px;

    box-shadow:

    0 10px 25px rgba(0,74,153,.25);

}

/* Hover Avatar */

.avatar:hover{

    transform:scale(1.05);

    transition:.3s;

}

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

.container-fluid{

    padding:30px;

}

/* ==========================================================
   MOBILE
========================================================== */

@media(max-width:991px){

.sidebar{

    width:80px;

}

.brand div:last-child{

    display:none;

}

.menu-label{

    display:none;

}

.sidebar .nav-link{

    justify-content:center;

    padding:16px;

}

.sidebar .nav-link span{

    display:none;

}

.sidebar .nav-link i{

    margin:0;

}

.main-content{

    margin-left:80px;

}

.sidebar-bottom{

    left:10px;

    right:10px;

}

}

@media(max-width:768px){

.topbar{

    padding:0 18px;

}

.container-fluid{

    padding:20px;

}

}
/* ==========================================================
   HERO CARD
========================================================== */

.hero-card{

    position:relative;

    overflow:hidden;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:40px;

    border-radius:28px;

    background:
    linear-gradient(
    135deg,
    #062543 0%,
    #0b3d6d 45%,
    #1976d2 100%);

    color:#fff;

    box-shadow:
    0 25px 45px rgba(0,70,150,.25);

    margin-bottom:25px;

}

.hero-card::before{

    content:'';

    position:absolute;

    width:320px;
    height:320px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    top:-140px;
    right:-90px;

}

.hero-card::after{

    content:'';

    position:absolute;

    width:220px;
    height:220px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    bottom:-120px;
    right:120px;

}

.hero-card h1{

    font-size:34px;

    font-weight:800;

    margin:8px 0 15px;

}

.hero-card p{

    max-width:650px;

    color:#d8e8f7;

    line-height:1.9;

    font-size:15px;

}

.hero-watermark{

    font-size:120px;

    opacity:.08;

    z-index:2;

}

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

.dashboard-card{

    background:#fff;

    border-radius:20px;

    padding:25px;

    box-shadow:
    0 10px 30px rgba(0,0,0,.05);

    transition:.35s;

    border:1px solid #edf1f5;

}

.dashboard-card:hover{

    transform:translateY(-6px);

    box-shadow:
    0 20px 45px rgba(0,0,0,.10);

}

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

.stat-card{

    background:#fff;

    border-radius:22px;

    padding:28px;

    border:1px solid #edf2f6;

    box-shadow:
    0 12px 25px rgba(0,0,0,.05);

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.stat-card::before{

    content:'';

    position:absolute;

    width:90px;
    height:90px;

    border-radius:50%;

    background:rgba(30,115,210,.08);

    right:-25px;
    top:-25px;

}

.stat-card:hover{

    transform:translateY(-7px);

    box-shadow:
    0 18px 40px rgba(0,0,0,.12);

}

.stat-card span{

    display:block;

    font-size:12px;

    color:#7d8794;

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:1px;

}

.stat-card strong{

    display:block;

    margin-top:12px;

    font-size:38px;

    font-weight:800;

    color:#0b3d6d;

}

.stat-card small{

    display:block;

    margin-top:8px;

    color:#4caf50;

}

/* ==========================================================
   QUICK MENU
========================================================== */

.quick-card{

    display:flex;

    align-items:center;

    gap:18px;

    background:#fff;

    border-radius:20px;

    padding:22px;

    border:1px solid #edf2f6;

    transition:.35s;

    color:#1f2937;

    box-shadow:
    0 8px 25px rgba(0,0,0,.04);

}

.quick-card:hover{

    transform:translateY(-5px);

    text-decoration:none;

    color:#0b3d6d;

    box-shadow:
    0 18px 35px rgba(0,0,0,.08);

}

.quick-card i{

    width:58px;

    height:58px;

    border-radius:16px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:
    linear-gradient(
    135deg,
    #0b3d6d,
    #2f7dc3);

    color:#fff;

    font-size:22px;

}

.quick-card strong{

    display:block;

    font-size:16px;

    margin-bottom:5px;

}

.quick-card span{

    color:#7b8796;

    font-size:13px;

}

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

.counselor-mini{

    display:flex;

    gap:18px;

    padding:18px;

    border-radius:18px;

    background:#fff;

    border:1px solid #edf2f6;

    transition:.3s;

}

.counselor-mini:hover{

    transform:translateY(-4px);

    box-shadow:
    0 15px 35px rgba(0,0,0,.08);

}

.avatar-lg{

    width:58px;

    height:58px;

    border-radius:16px;

    background:
    linear-gradient(
    135deg,
    #0b3d6d,
    #2f7dc3);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:700;

    font-size:20px;

}

/* ==========================================================
   DETAIL BOX
========================================================== */

.detail-box{

    background:#f7f9fc;

    border:1px solid #e9eef4;

    border-radius:16px;

    padding:18px;

    margin-top:12px;

    line-height:1.9;

    color:#555;

}

/* ==========================================================
   SECTION TITLE
========================================================== */

.section-title{

    font-size:20px;

    font-weight:700;

    color:#173553;

    margin-bottom:20px;

}

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

.card-title{

    font-size:18px;

    font-weight:700;

    color:#173553;

    margin-bottom:18px;

}

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

@media(max-width:991px){

.hero-card{

flex-direction:column;

align-items:flex-start;

}

.hero-watermark{

display:none;

}

.stat-card strong{

font-size:30px;

}

}

@media(max-width:768px){

.hero-card{

padding:28px;

}

.hero-card h1{

font-size:28px;

}

.quick-card{

padding:18px;

}

.quick-card i{

width:50px;

height:50px;

font-size:20px;

}

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

.table{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    margin-bottom:0;

    font-size:14px;

}

.table thead{

    background:#f5f8fc;

}

.table th{

    border:none;

    padding:16px;

    font-size:12px;

    text-transform:uppercase;

    letter-spacing:1px;

    color:#64748b;

    font-weight:700;

}

.table td{

    padding:16px;

    border-top:1px solid #edf2f7;

    vertical-align:middle;

}

.table tbody tr{

    transition:.25s;

}

.table tbody tr:hover{

    background:#f8fbff;

}

/* ==========================================================
   FORM
========================================================== */

.form-control,
.form-select{

    border-radius:14px;

    border:1px solid #dfe7ef;

    min-height:48px;

    font-size:14px;

    transition:.3s;

}

.form-control:focus,
.form-select:focus{

    border-color:#1976d2;

    box-shadow:
    0 0 0 .25rem rgba(25,118,210,.15);

}

textarea.form-control{

    min-height:120px;

}

/* ==========================================================
   BUTTON
========================================================== */

.btn{

    border-radius:12px;

    font-weight:600;

    transition:.3s;

}

.btn-primary{

    background:#0b3d6d;

    border:none;

}

.btn-primary:hover{

    background:#155694;

    transform:translateY(-2px);

}

.btn-success{

    background:#28c76f;

    border:none;

}

.btn-success:hover{

    transform:translateY(-2px);

}

.btn-danger{

    border:none;

}

.btn-warning{

    border:none;

}

.btn-outline-primary{

    border:1px solid #0b3d6d;

    color:#0b3d6d;

}

.btn-outline-primary:hover{

    background:#0b3d6d;

    color:#fff;

}

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

.badge-status{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:8px 14px;

    border-radius:30px;

    font-size:11px;

    font-weight:700;

    letter-spacing:.5px;

}

.status-menunggu{

    background:#fff4d6;

    color:#946200;

}

.status-disetujui{

    background:#dff7e8;

    color:#0d7d43;

}

.status-ditolak{

    background:#fde5e6;

    color:#b42318;

}

.status-selesai{

    background:#e4f0ff;

    color:#1556a5;

}

.status-dibatalkan{

    background:#eceff3;

    color:#5f6c7b;

}

/* ==========================================================
   VERIFIED
========================================================== */

.verified{

    display:inline-flex;

    align-items:center;

    gap:6px;

    padding:7px 12px;

    border-radius:30px;

    background:#eaf8ef;

    color:#148247;

    font-size:11px;

    font-weight:700;

}

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

.card{

    border:none;

    border-radius:20px;

    box-shadow:

    0 10px 30px rgba(0,0,0,.05);

}

.card-header{

    background:#fff;

    border-bottom:1px solid #edf2f6;

    font-weight:700;

    padding:18px 22px;

}

.card-body{

    padding:22px;

}

/* ==========================================================
   MODAL
========================================================== */

.modal-content{

    border:none;

    border-radius:22px;

    overflow:hidden;

}

.modal-header{

    border-bottom:1px solid #edf2f7;

}

.modal-footer{

    border-top:1px solid #edf2f7;

}

/* ==========================================================
   PAGINATION
========================================================== */

.pagination .page-link{

    border:none;

    margin:0 4px;

    border-radius:10px;

    color:#0b3d6d;

    min-width:42px;

    text-align:center;

}

.pagination .page-item.active .page-link{

    background:#0b3d6d;

    color:#fff;

}

/* ==========================================================
   DROPDOWN
========================================================== */

.dropdown-menu{

    border:none;

    border-radius:16px;

    box-shadow:

    0 20px 40px rgba(0,0,0,.08);

}

.dropdown-item{

    padding:10px 18px;

    font-size:14px;

}

.dropdown-item:hover{

    background:#f5f9fd;

}

/* ==========================================================
   SCROLLBAR
========================================================== */

::-webkit-scrollbar{

    width:9px;

    height:9px;

}

::-webkit-scrollbar-thumb{

    background:#b8c5d6;

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#8da2bb;

}

/* ==========================================================
   ANIMATION
========================================================== */

.fade-up{

    animation:fadeUp .45s ease;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(18px);

    }

    to{

        opacity:1;

        transform:none;

    }

}

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

@media(max-width:992px){

.table{

display:block;

overflow-x:auto;

white-space:nowrap;

}

}

@media(max-width:768px){

.card-body{

padding:18px;

}

.table td,
.table th{

padding:12px;

}

.hero-card{

padding:25px;

}

.topbar{

height:70px;

}

}

@media(max-width:576px){

.container-fluid{

padding:15px;

}

.login-card{

padding:25px;

}

.hero-card h1{

font-size:24px;

}

.stat-card strong{

font-size:28px;

}

.quick-card{

padding:16px;

}

}
/* Penyegaran UI 2026 */
:root{--navy:#102b45;--navy-2:#173d60;--gold:#d0a13d;--surface:#fff;--bg:#f4f7f8;--line:#e5ebee;--ink:#203444}.app-body{background:var(--bg);color:var(--ink);font-family:Inter,system-ui,-apple-system,"Segoe UI",sans-serif}.sidebar{background:linear-gradient(180deg,#102b45,#0a2035);box-shadow:8px 0 28px rgba(10,32,53,.12)}.brand{padding-bottom:16px;border-bottom:1px solid rgba(255,255,255,.1)}.nav-link{border-radius:9px;margin:2px 0;transition:.2s ease}.nav-link:hover,.nav-link.active{background:rgba(255,255,255,.12)!important;color:#fff!important;transform:translateX(2px)}.topbar{box-shadow:0 1px 0 var(--line);background:rgba(255,255,255,.95);backdrop-filter:blur(10px)}.modern-card,.card{border-radius:14px!important;border:1px solid var(--line)!important;box-shadow:0 8px 28px rgba(24,53,73,.06)!important}.page-heading{display:flex;justify-content:space-between;align-items:center;gap:16px;margin-bottom:24px}.page-heading h2{font-weight:750;letter-spacing:-.5px;margin:0}.page-heading p{margin:5px 0 0;color:#71808c}.eyebrow{letter-spacing:1.2px;font-size:10px!important;font-weight:800;color:var(--gold)!important}.btn-navy{background:var(--navy);border-color:var(--navy);color:#fff;border-radius:8px;padding:.55rem .9rem}.btn-navy:hover{background:var(--navy-2);border-color:var(--navy-2);color:#fff}.form-control,.form-select{border-color:#dbe3e8;border-radius:8px;padding:.57rem .72rem}.form-control:focus,.form-select:focus{box-shadow:0 0 0 .22rem rgba(34,96,139,.13);border-color:#5e8aac}.table thead th{background:#f8fafb;color:#70808b;font-size:11px;letter-spacing:.4px;text-transform:uppercase;border:0;padding:14px}.table td{padding:14px;border-color:#edf1f3}.profile-photo,.profile-placeholder{width:106px;height:106px;border-radius:50%;object-fit:cover;display:grid;place-items:center;margin:auto;border:4px solid #f2e7cb;background:linear-gradient(135deg,#be8c59,#e9c38b);color:#fff;font-size:32px;font-weight:800}.alert{border:0;border-radius:10px}.badge-status{border-radius:20px;padding:5px 9px;font-size:10px;font-weight:700}@media(max-width:768px){.page-heading{align-items:flex-start;flex-direction:column}.sidebar{min-height:auto}.main-content{margin-left:0!important}}
