*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter',sans-serif;
}


/* =========================
NAVBAR
========================= */

.navbar{
    width:100%;
    padding:25px 60px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    font-size:30px;
    font-weight:800;
    letter-spacing:1px;
}

.nav-menu{
    display:flex;
    gap:15px;
    align-items:center;
}

.nav-menu a{
    text-decoration:none;
}

/* =========================
BUTTON
========================= */

.btn-primary{
    background:#3b82f6;
    color:white;
    padding:12px 22px;
    border-radius:14px;
    font-weight:600;
    transition:.3s;
}

.btn-primary:hover{
    background:#2563eb;
}

.btn-upload{
    width:100%;
    margin-top:25px;
    border:none;
    padding:16px;
    border-radius:18px;
    background:#3b82f6;
    color:white;
    font-size:15px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.btn-upload:hover{
    transform:translateY(-2px);
    background:#2563eb;
}

/* =========================
HERO
========================= */

.hero{
    width:100%;
    min-height:85vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:20px;
}

.hero-card{
    width:100%;
    max-width:720px;
    padding:60px;
    border-radius:32px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.1);

    box-shadow:
    0 20px 60px rgba(0,0,0,.25);
}

.hero-card h1{
    font-size:52px;
    font-weight:800;
    margin-bottom:15px;
}

.hero-card p{
    color:rgba(255,255,255,.7);
    line-height:1.8;
    margin-bottom:40px;
}

/* =========================
UPLOAD BOX
========================= */

.upload-box{
    border:2px dashed rgba(255,255,255,.2);
    border-radius:24px;
    padding:60px 30px;
    text-align:center;
    transition:.3s;
}

.upload-box:hover{
    border-color:#60a5fa;
    background:rgba(255,255,255,.05);
}

.upload-box input{
    width:100%;
    padding:14px;
    border-radius:14px;
    background:white;
    border:none;
    color:#111827;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:768px){

    .navbar{
        padding:20px;
    }

    .hero-card{
        padding:35px 25px;
    }

    .hero-card h1{
        font-size:36px;
    }

}
/* =========================
VERIFY PAGE
========================= */

.verify-page{

    min-height:100vh;

    background:
    radial-gradient(circle at top left,#1e40af 0%,#0f172a 60%);

    display:flex;

    justify-content:center;

    align-items:center;

    padding:20px;
}

/* =========================
VERIFY CARD
========================= */

.verify-card{

    width:100%;
    max-width:650px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.1);

    border-radius:30px;

    padding:45px;

    box-shadow:
    0 20px 60px rgba(0,0,0,.25);

    color:white;
}

.verify-card h1{

    font-size:40px;

    margin-bottom:15px;

    font-weight:800;
}

.verify-card p{

    color:rgba(255,255,255,.7);

    margin-bottom:35px;

    line-height:1.8;
}

/* =========================
VERIFY FORM
========================= */

.verify-form{

    display:flex;

    flex-direction:column;

    gap:20px;
}

/* =========================
INPUT
========================= */

.verify-form input[type="text"],

.verify-form input[type="file"]{

    width:100%;

    padding:18px;

    border:none;

    border-radius:18px;

    background:rgba(255,255,255,.12);

    color:white;

    outline:none;

    font-size:14px;
}

.verify-form input::placeholder{
    color:rgba(255,255,255,.5);
}

/* =========================
UPLOAD AREA
========================= */

.verify-upload-box{

    border:2px dashed rgba(255,255,255,.2);

    border-radius:24px;

    padding:45px 25px;

    text-align:center;

    transition:.3s;
}

.verify-upload-box:hover{

    border-color:#60a5fa;

    background:rgba(255,255,255,.05);
}

/* =========================
BUTTON
========================= */

.verify-btn{

    border:none;

    padding:18px;

    border-radius:18px;

    background:#3b82f6;

    color:white;

    font-size:15px;

    font-weight:700;

    cursor:pointer;

    transition:.3s;
}

.verify-btn:hover{

    background:#2563eb;

    transform:translateY(-2px);
}

/* =========================
DIVIDER
========================= */

.verify-divider{

    text-align:center;

    margin:10px 0;

    position:relative;

    color:rgba(255,255,255,.5);
}

.verify-divider::before{

    content:'';

    position:absolute;

    left:0;

    top:50%;

    width:42%;

    height:1px;

    background:rgba(255,255,255,.15);
}

.verify-divider::after{

    content:'';

    position:absolute;

    right:0;

    top:50%;

    width:42%;

    height:1px;

    background:rgba(255,255,255,.15);
}

/* =========================
BACK BUTTON
========================= */

.back-home{

    display:inline-flex;

    margin-top:25px;

    color:#93c5fd;

    text-decoration:none;

    font-size:14px;

    font-weight:600;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:768px){

    .verify-card{

        padding:35px 25px;
    }

    .verify-card h1{

        font-size:30px;
    }

}
/* =========================
VERIFY RESULT PAGE
========================= */

.verify-result-page{

    min-height:100vh;

    background:#f4f7fb;

    padding:40px 20px;

    font-family:'Inter',sans-serif;
}

.verify-container{

    max-width:1100px;

    margin:auto;
}

/* =========================
STATUS BOX
========================= */

.verify-status{

    border-radius:24px;

    padding:25px 30px;

    margin-bottom:25px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    flex-wrap:wrap;

    gap:20px;

    box-shadow:
    0 10px 30px rgba(0,0,0,.05);
}

.verify-valid{

    background:#dcfce7;

    border:1px solid #86efac;
}

.verify-invalid{

    background:#fee2e2;

    border:1px solid #fca5a5;
}

.verify-status h2{

    font-size:28px;

    font-weight:800;
}

.verify-valid h2{
    color:#166534;
}

.verify-invalid h2{
    color:#991b1b;
}

.verify-status p{

    font-size:14px;

    color:#475569;
}

/* =========================
CARD
========================= */

.verify-card-box{

    background:white;

    border-radius:30px;

    padding:35px;

    margin-bottom:25px;

    box-shadow:
    0 10px 30px rgba(0,0,0,.05);
}

/* =========================
SECTION TITLE
========================= */

.verify-section-title{

    font-size:22px;

    font-weight:700;

    margin-bottom:25px;

    color:#0f172a;
}

/* =========================
CERTIFICATE GRID
========================= */

.cert-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;
}

/* =========================
CERT ITEM
========================= */

.cert-item{

    background:#f8fafc;

    border-radius:18px;

    padding:20px;

    border:1px solid #e2e8f0;
}

.cert-label{

    font-size:13px;

    color:#64748b;

    margin-bottom:8px;
}

.cert-value{

    font-size:15px;

    font-weight:700;

    color:#0f172a;

    word-break:break-word;
}

/* =========================
PDF VIEWER
========================= */

.pdf-viewer{

    width:100%;

    overflow:auto;
}

.pdf-viewer canvas{

    width:100%;

    height:auto;

    margin-bottom:20px;

    border-radius:14px;

    border:1px solid #e2e8f0;
}

/* =========================
HASH BOX
========================= */

.hash-box{

    margin-top:20px;
}

.hash-box textarea{

    width:100%;

    min-height:140px;

    border:none;

    border-radius:18px;

    background:#0f172a;

    color:#22c55e;

    padding:20px;

    resize:none;

    font-family:monospace;

    font-size:13px;
}

/* =========================
ACTION BUTTON
========================= */

.verify-action{

    margin-top:30px;

    display:flex;

    gap:15px;

    flex-wrap:wrap;
}

.verify-action a{

    text-decoration:none;
}

.verify-btn-download{

    background:#0f172a;

    color:white;

    padding:14px 22px;

    border-radius:16px;

    font-weight:700;

    transition:.3s;
}

.verify-btn-download:hover{

    background:#1e293b;
}

.verify-btn-home{

    background:#3b82f6;

    color:white;

    padding:14px 22px;

    border-radius:16px;

    font-weight:700;

    transition:.3s;
}

.verify-btn-home:hover{

    background:#2563eb;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:768px){

    .verify-status{

        flex-direction:column;

        align-items:flex-start;
    }

    .verify-status h2{

        font-size:22px;
    }

    .verify-card-box{

        padding:25px 20px;
    }

    .cert-grid{

        grid-template-columns:1fr;
    }

}

/* =========================
LANDING PAGE
========================= */

.landing-page{

    min-height:100vh;

    background:
    radial-gradient(circle at top left,#1e40af 0%,#0f172a 60%);

    font-family:'Inter',sans-serif;

    color:white;
}

/* =========================
NAVBAR
========================= */

.navbar{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:25px 50px;
}

/* =========================
LOGO
========================= */

.logo{

    font-size:30px;

    font-weight:800;
}

.logo span{

    color:#60a5fa;
}

/* =========================
LOGIN BTN
========================= */

.login-btn{

    padding:14px 22px;

    border-radius:16px;

    background:white;

    color:#0f172a;

    text-decoration:none;

    font-weight:700;

    transition:.3s;
}

.login-btn:hover{

    transform:translateY(-2px);
}

/* =========================
HERO
========================= */

.hero{

    min-height:calc(100vh - 100px);

    display:flex;

    justify-content:center;

    align-items:center;

    padding:20px;
}

/* =========================
CARD
========================= */

.hero-card{

    width:100%;

    max-width:700px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.1);

    border-radius:32px;

    padding:50px;

    box-shadow:
    0 20px 60px rgba(0,0,0,.25);
}

/* =========================
TITLE
========================= */

.hero-card h1{

    font-size:48px;

    font-weight:800;

    margin-bottom:15px;
}

.hero-card p{

    color:rgba(255,255,255,.7);

    line-height:1.8;

    margin-bottom:35px;
}

/* =========================
FORM
========================= */

.verify-form{

    display:flex;

    flex-direction:column;

    gap:18px;
}

/* =========================
INPUT
========================= */

.verify-form input[type="text"],

.verify-form input[type="file"]{

    width:100%;

    padding:18px;

    border:none;

    border-radius:18px;

    background:rgba(255,255,255,.12);

    color:white;

    outline:none;
}

.verify-form input::placeholder{

    color:rgba(255,255,255,.5);
}

/* =========================
BUTTON
========================= */

.verify-form button{

    border:none;

    padding:18px;

    border-radius:18px;

    background:#3b82f6;

    color:white;

    font-weight:700;

    cursor:pointer;

    transition:.3s;
}

.verify-form button:hover{

    background:#2563eb;

    transform:translateY(-2px);
}

/* =========================
UPLOAD BOX
========================= */

.upload-box{

    border:2px dashed rgba(255,255,255,.2);

    border-radius:24px;

    padding:40px 25px;

    text-align:center;
}

.upload-box p{

    margin-bottom:15px;
}

/* =========================
DIVIDER
========================= */

.divider{

    text-align:center;

    margin:25px 0;

    position:relative;

    color:rgba(255,255,255,.5);
}

.divider::before{

    content:'';

    position:absolute;

    left:0;

    top:50%;

    width:42%;

    height:1px;

    background:rgba(255,255,255,.15);
}

.divider::after{

    content:'';

    position:absolute;

    right:0;

    top:50%;

    width:42%;

    height:1px;

    background:rgba(255,255,255,.15);
}

/* =========================
FOOTER
========================= */

.hero-footer{

    margin-top:30px;

    text-align:center;

    color:rgba(255,255,255,.7);
}

.hero-footer a{

    color:#93c5fd;

    text-decoration:none;

    font-weight:700;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:768px){

    .navbar{

        padding:25px 20px;
    }

    .hero-card{

        padding:35px 25px;
    }

    .hero-card h1{

        font-size:34px;
    }

}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f4f7fb;
    color:#1e293b;
}

.wrapper{
    display:flex;
    min-height:100vh;
}

/* =========================
SIDEBAR
========================= */

.sidebar{
    width:260px;
    background:#0f172a;
    color:#fff;
    padding:25px;
    position:sticky;
    top:0;
    height:100vh;
}

.sidebar-header{
    margin-bottom:35px;
}

.sidebar-header h2{
    font-size:28px;
    font-weight:700;
    margin-bottom:6px;
}

.sidebar-header p{
    color:#94a3b8;
    font-size:13px;
}

.sidebar-menu{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.sidebar-menu a{
    text-decoration:none;
    color:#cbd5e1;
    padding:14px 16px;
    border-radius:12px;
    transition:.2s;
    font-size:15px;
    font-weight:500;
}

.sidebar-menu a:hover{
    background:#1e293b;
    color:#fff;
}

.sidebar-menu a.active{
    background:#16a34a;
    color:#fff;
}

/* =========================
CONTENT
========================= */

.content{
    flex:1;
    padding:30px;
}

.page-title{
    font-size:28px;
    font-weight:700;
    margin-bottom:25px;
}

/* =========================
CARD
========================= */

.card{
    background:#fff;
    border-radius:20px;
    padding:25px;
    box-shadow:0 5px 25px rgba(0,0,0,.05);
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:900px){

    .wrapper{
        flex-direction:column;
    }

    .sidebar{
        width:100%;
        height:auto;
        position:relative;
    }

    .content{
        padding:20px;
    }

}

