/* ==========================
   BORNEO POS
   style.css
========================== */

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



body{

    font-family:'Poppins',sans-serif;

    background:#f5f7fb;

    color:#1f2937;

    line-height:1.7;

}

/*========================*/

.container{

    width:90%;

    max-width:1200px;

    margin:auto;

}

/*========================*/

header{

    width:100%;

    background:#ffffff;

    position:sticky;

    top:0;

    z-index:999;

    box-shadow:0 2px 15px rgba(0,0,0,.05);

}

header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:80px;

}

.logo{
    font-size:28px;
    font-weight:600;
    color:#2563eb;
    display:flex;
    align-items:center;
    gap:10px;
}

.logo img{
    width:42px;
    height:42px;
    object-fit:cover;
    border-radius:50%;
}

nav{

    display:flex;

    gap:35px;

}

nav a{

    text-decoration:none;

    color:#374151;

    font-weight:500;

    transition:.3s;

}

nav a:hover{

    color:#2563eb;

}

.menu-button{

    display:flex;

    gap:15px;

}

/*========================*/

.btn-primary{

    display:inline-block;

    background:#2563eb;

    color:#fff;

    text-decoration:none;

    padding:14px 28px;

    border-radius:10px;

    font-weight:600;

    transition:.3s;

}

.btn-primary:hover{

    background:#1d4ed8;

    transform:translateY(-3px);

    box-shadow:0 15px 30px rgba(37,99,235,.35);

}

.btn-outline{

    display:inline-block;

    border:2px solid #2563eb;

    color:#2563eb;

    text-decoration:none;

    padding:12px 26px;

    border-radius:10px;

    font-weight:600;

    transition:.3s;

}

.btn-outline:hover{

    background:#2563eb;

    color:white;

}

/*========================*/

.hero{

    padding:90px 0;

    background:
    linear-gradient(135deg,#eef4ff,#ffffff);

}

.hero-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}

.badge{

    display:inline-block;

    background:#dbeafe;

    color:#2563eb;

    padding:10px 18px;

    border-radius:50px;

    font-size:14px;

    font-weight:600;

    margin-bottom:25px;

}

.hero h1{

    font-size:58px;

    line-height:1.2;

    margin-bottom:25px;

    font-weight:800;

}

.hero h1 span{

    color:#2563eb;

}

.hero p{

    color:#6b7280;

    font-size:18px;

    margin-bottom:35px;

}

.hero-button{

    display:flex;

    gap:20px;

    margin-bottom:50px;

}

/*========================*/

.stats{

    display:flex;

    gap:25px;

}

.item{

    background:white;

    padding:25px;

    border-radius:18px;

    flex:1;

    box-shadow:0 15px 40px rgba(0,0,0,.06);

}

.item h2{

    color:#2563eb;

    font-size:30px;

}

.item small{

    color:#6b7280;

}

/*========================*/

.dashboard{

    background:white;

    border-radius:25px;

    padding:30px;

    box-shadow:0 25px 60px rgba(0,0,0,.10);

}

.top{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:25px;

}

.online{

    color:#10b981;

    font-weight:bold;

}

.cards{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;

}

.card{

    background:#f8fafc;

    border-radius:18px;

    padding:25px;

    transition:.35s;

}

.card:hover{

    transform:translateY(-8px);

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

}

.card small{

    color:#6b7280;

}

.card h2{

    margin-top:10px;

    color:#2563eb;

}

/*========================*/

.fitur{

    padding:90px 0;

}

.fitur h2{

    text-align:center;

    font-size:42px;

    margin-bottom:15px;

}

.fitur> .container>p{

    text-align:center;

    color:#6b7280;

    margin-bottom:60px;

}

.grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.box{

    background:white;

    border-radius:20px;

    padding:40px;

    text-align:center;

    font-size:45px;

    transition:.35s;

    box-shadow:0 15px 40px rgba(0,0,0,.06);

}

.box:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 50px rgba(37,99,235,.15);

}

.box h3{

    font-size:22px;

    margin-top:20px;

    margin-bottom:15px;

}

.box p{

    color:#6b7280;

    font-size:15px;

}

/*========================*/

footer{

    background:#111827;

    color:white;

    padding:60px 0;

    margin-top:80px;

}

footer p{

    text-align:center;

}

/*========================*/

@media(max-width:992px){

.hero-grid{

grid-template-columns:1fr;

}

nav{

display:none;

}

.grid{

grid-template-columns:1fr 1fr;

}

.hero h1{

font-size:45px;

}

.stats{

flex-direction:column;

}

}

@media(max-width:768px){

.grid{

grid-template-columns:1fr;

}

.hero{

padding:60px 0;

}

.hero h1{

font-size:36px;

}

.hero-button{

flex-direction:column;

}

header .container{

height:70px;

}



.menu-button{

display:none;

}

.cards{

grid-template-columns:1fr;

}

.box{

padding:30px;

}

}

.trusted{padding:80px 0;background:#fff}
.trusted-title{text-align:center;color:#6b7280;margin-bottom:40px;font-size:18px}
.trusted-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px}
.trusted-item{background:#f8fafc;border:1px solid #e5e7eb;border-radius:18px;padding:30px;text-align:center;font-size:40px;transition:.3s}
.trusted-item span{display:block;font-size:16px;font-weight:600;margin-top:12px}
.trusted-item:hover{transform:translateY(-8px);box-shadow:0 20px 45px rgba(37,99,235,.12)}
@media(max-width:992px){.trusted-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:768px){.trusted-grid{grid-template-columns:1fr}}


/* =====================================================
   NAVBAR REGISTER
   Mengikuti navbar landing page
===================================================== */

.register-header{

    position:sticky;
    top:0;
    z-index:1000;

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

    backdrop-filter:blur(14px);

    border-bottom:1px solid #eef2f7;

}

.register-navbar{

    width:90%;
    max-width:1180px;
    height:76px;

    margin:auto;

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

}

.register-logo{

    display:flex;
    align-items:center;
    gap:10px;

    color:#111827;

    font-size:21px;
    font-weight:800;

    text-decoration:none;

}

.register-logo-mark{

    width:38px;
    height:38px;

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

    border-radius:10px;

    background:#2563eb;
    color:#fff;

    font-size:20px;
    font-weight:800;

    box-shadow:0 8px 20px rgba(37,99,235,.25);

}

.register-nav-links{

    display:flex;
    align-items:center;
    gap:32px;

}

.register-nav-links a{

    color:#4b5563;

    font-size:14px;
    font-weight:500;

    text-decoration:none;

    transition:.25s;

}

.register-nav-links a:hover{

    color:#2563eb;

}

.register-nav-actions{

    display:flex;
    align-items:center;
    gap:12px;

}

.register-login{

    color:#374151;

    font-size:14px;
    font-weight:600;

    text-decoration:none;

}

.register-login:hover{

    color:#2563eb;

}

.register-nav-btn{

    padding:10px 18px;

    background:#2563eb;
    color:#fff;

    border-radius:9px;

    font-size:13px;
    font-weight:600;

    text-decoration:none;

    transition:.25s;

}

.register-nav-btn:hover{

    background:#1d4ed8;

    transform:translateY(-1px);

}


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

@media(max-width:992px){

    .register-nav-links{
        display:none;
    }

}

@media(max-width:768px){

    .register-navbar{

        width:92%;
        height:70px;

    }

    .register-logo{

        font-size:18px;

    }

    .register-logo-mark{

        width:34px;
        height:34px;

        font-size:18px;

    }

    .register-nav-actions{

        gap:8px;

    }

    .register-login{

        font-size:13px;

    }

    .register-nav-btn{

        padding:9px 14px;

        font-size:12px;

    }

}

@media(max-width:768px){

    .register-nav-actions{
        display:flex !important;
        align-items:center;
        gap:8px;
    }

    .register-login{
        display:block !important;
    }

    .register-nav-btn{
        display:block !important;
    }

}

