        :root {
            --primary: #3b82f6;
            --primary-dark: #2563eb;
            --bg: #f3f7fd;
            --card-bg: #ffffff;
            --text-main: #0f172a;
            --text-sub: #64748b;
        }

        * {
            box-sizing: border-box;
            font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            background-image: url(../../assets/bg2.jpg);
            color: var(--text-main);
            min-height: 100vh;
            
        }

        /* ================= HEADER ================= */
    header {
      display: flex;
      justify-content: flex-end;
      padding: 20px 40px;
      font-size: 14px;
    }

    header a {
      text-decoration: none;
      color: var(--text-sub);
      margin-left: 20px;
    }

    header a:hover {
      color: var(--primary);
    }

    .navbar {
      width: 100%;
      background: rgba(200, 226, 255, 0.436);
      position: fixed;
      top: 0;
      left: 0;
      backdrop-filter: blur(10px);
      border-bottom: 1px solid #e5edff;
      z-index: 999;
    }

    .nav-container {
      max-width: 1200px;
      margin: auto;
      padding: 16px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .nav-logo img {
      height: 40px;
      object-fit: contain;
    }

    /* ================= MENU DESKTOP ================= */
    .nav-menu {
      list-style: none;
      display: flex;
      gap: 30px;
      padding: 0;
      margin: 0;
    }

    .nav-menu li a {
      text-decoration: none;
      font-size: 14px;
      font-weight: 600;
      color: var(--text-sub);
      position: relative;
    }

    .nav-menu li a:hover,
    .nav-menu li a.active {
      color: var(--primary);
    }

    .nav-menu li a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -6px;
      width: 0;
      height: 2px;
      background: var(--primary);
      transition: width 0.3s ease;
    }

    .nav-menu li a:hover::after,
    .nav-menu li a.active::after {
      width: 100%;
    }

    /* ================= HAMBURGER ================= */
    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
    }

    .hamburger span {
      width: 25px;
      height: 3px;
      background: var(--primary);
      margin: 4px 0;
      transition: 0.3s;
    }

    /* ================= MOBILE ================= */
    @media (max-width: 768px) {
      .nav-container {
        padding: 14px 20px;
      }

      .nav-logo img {
        height: 32px;
      }

      .hamburger {
        display: flex;
      }

      .nav-menu {
        position: fixed;
        top: 70px;
        right: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(200, 226, 255, 0.95);
        backdrop-filter: blur(10px);

        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;

        transform: translateX(100%);
        transition: transform 0.3s ease;
      }

      .nav-menu.active {
        transform: translateX(0);
      }

      .nav-menu li a {
        font-size: 18px;
      }
    }

        /* Main */
        main {
            flex: 1;
            justify-content: center;
            align-items: center;
            padding: 40px 20px;
        }

        .card-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 900px;
            width: 100%;
        }

        .card {
            background-image: url(../../assets/bg2.jpg);
            border-radius: 16px;
            padding: 60px;
            box-shadow: 1px 20px 40px rgba(59,130,246,0.15);
            border: 2px solid rgba(59,130,246,0.15);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .card:hover {
            transform: translateY(-6px);
            box-shadow: 0 30px 60px rgba(59,130,246,0.2);
        }

        .icon {
            width: 80px;
            height: 86px;
            border-radius: 14px;
            /* background: linear-gradient(135deg, #60a5fa, #2563eb); */
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 46px;
            margin-bottom: 20px;
        }
        .icon img.kunci{
            -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
        }

        .card h2 {
            margin: 0 0 8px;
            font-size: 22px;
        }

        .card p {
            margin: 0 0 25px;
            color: var(--text-sub);
            font-size: 14px;
        }

        .card button {
            width: 100%;
            padding: 14px;
            border-radius: 10px;
            border: none;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: opacity 0.2s ease;
        }

        .card button:hover {
            opacity: 0.9;
        }

        /* Footer */
        footer {
            text-align: center;
            padding: 20px;
            font-size: 13px;
            color: var(--text-sub);
        }

        footer a {
            color: var(--text-sub);
            text-decoration: none;
            margin-left: 10px;
        }

        footer a:hover {
            color: var(--primary);
        }

        
        /* Hero Section */
.hero-section {
    padding: 100px 20px 80px;
    background-image: url(../../assets/bg2.jpg);
    border: 1px solid #0f172a;
    border-radius: 20px;
    /* position: relative; */
    overflow: hidden;
}

.hero-section::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: 0;
    width: 100%;
    height: 200px;
    background: radial-gradient(circle at center, rgba(59,130,246,0.15), transparent 70%);
}

.hero-container {
    max-width: 1200px;
    margin: auto;

    gap: 40px;
    align-items: center;
    /* position: relative; */
    z-index: 1;
}

.hero-content h1 {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #0f172a;
}

.hero-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
    max-width: 520px;
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.btn-primary {
    padding: 14px 24px;
    border-radius: 10px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(59,130,246,0.35);
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-secondary {
    padding: 14px 24px;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid #dbeafe;
    color: #2563eb;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
}

.btn-secondary:hover {
    background: #f1f6ff;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
}

.hero-icon {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, #60a5fa, #2563eb);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    color: white;
    box-shadow: 0 25px 50px rgba(37,99,235,0.4);
}

/* Responsive */
@media (max-width: 900px) {
    /*.hero-container {*/
    /*    grid-template-columns: 1fr;*/
    /*    text-align: center;*/
    /*}*/

    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-visual {
        margin-top: 40px;
    }
    .hero-container{
        flex-direction: column-reverse;
    }
}

 /* About Section */
.about-section {
    padding: 80px 20px;
}

.about-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 180px;
    gap: 40px;
    align-items: center;
}

.about-text h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #0f172a;
}

.about-text p {
    font-size: 15px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 16px;
}

.about-icon {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    /* background: linear-gradient(135deg, #60a5fa, #2563eb); */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    color: white;
    /* box-shadow: 0 20px 40px rgba(37,99,235,0.35); */
}

/* Responsive */
@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-icon {
        margin: 0 auto;
    }
}

/* Contact Section */
.contact-section {
    margin-top: 100px;
    padding: 90px 20px;
    background-image: url(../../assets/bg2.jpg);
}

.contact-container {
    max-width: 600px;
    margin: auto;
    text-align: center;
}

.contact-container h2 {
    font-size: 26px;
    margin-bottom: 14px;
    color: #0f172a;
}

.contact-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 30px;
}

.contact-form {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(59,130,246,0.15);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 14px;
    border-radius: 10px;
    border: 1px solid #e5edff;
    font-size: 14px;
    outline: none;
    resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59,130,246,0.15);
}

.required-note {
    font-size: 12px;
    color: #64748b;
    margin: 10px 0 20px;
    text-align: left;
}

.contact-form button {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.contact-form button:hover {
    opacity: 0.9;
}

.contact-note {
    margin-top: 20px;
    font-size: 13px;
    color: #64748b;
}

/* Responsive */
@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-icon {
        margin: 0 auto;
    }
}
/* Verify Section */
.verify-section {
    padding: 90px 20px;

}

.verify-container {
    max-width: 700px;
    margin: auto;
}

.breadcrumb {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 16px;
}

.breadcrumb span {
    margin: 0 6px;
}

.verify-card {
    background: #ffffff;    
    border-radius: 16px;
    padding: 36px 34px;
    box-shadow: 0 30px 60px rgba(59,130,246,0.18);
}

.verify-card h2 {
    text-align: center;
    font-size: 26px;
    margin-bottom: 10px;
    color: #0f172a;
}

.verify-desc {
    text-align: center;
    font-size: 14px;
    color: #475569;
    margin-bottom: 30px;
}

.verify-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #334155;
}

.verify-form label span {
    color: #ef4444;
}

.input-group {
    position: relative;
    margin-bottom: 22px;
}

.input-group input {
    width: 100%;
    padding: 14px 16px 14px 44px;
    border-radius: 10px;
    border: 1px solid #e5edff;
    font-size: 14px;
    outline: none;
}

.input-group input:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59,130,246,0.15);
}

.input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #3b82f6;
    font-size: 14px;
}

.verify-btn {
    width: 100%;
    padding: 14px;
    margin-top: 10px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s ease;
    display: flex;
    justify-content: center;
    text-decoration: none;
}

.verify-btn:hover {
    opacity: 0.9;
}

.back-link {
    display: block;
    text-align: center;
    margin-top: 14px;
    font-size: 14px;
    color: #2563eb;
    text-decoration: none;
}

.back-link:hover {
    text-decoration: underline;
}

.verify-note {
    margin-top: 26px;
    font-size: 13px;
    color: #64748b;
    text-align: center;
}

.verify-footer {
    margin-top: 26px;
    font-size: 13px;
    color: #475569;
    text-align: center;
}

.issued-note {
    margin-top: 18px;
    font-size: 12px;
    color: #94a3b8;
    text-align: center;
}
/* Share Register Section */
.register-section {
    padding: 90px 20px;
    background-image: url(../../assets/bg2.jpg);
}

.register-container {
    max-width: 1100px;
    margin: auto;
}

.register-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 36px 34px;
    box-shadow: 0 30px 60px rgba(59,130,246,0.18);
}

.register-card h2 {
    text-align: center;
    font-size: 26px;
    margin-bottom: 14px;
    color: #0f172a;
}

.register-desc {
    text-align: center;
    font-size: 14px;
    color: #475569;
    margin-bottom: 30px;
    line-height: 1.7;
}

/* Table */
.table-wrapper {
    overflow-x: auto;
}

.register-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.register-table thead {
    background: #f1f6ff;
}

.register-table th,
.register-table td {
    padding: 14px 12px;
    text-align: left;
    border-bottom: 1px solid #e5edff;
    vertical-align: top;
}

.register-table th {
    font-weight: 600;
    color: #334155;
    white-space: nowrap;
}

.register-table td {
    color: #475569;
}

.register-table tbody tr:hover {
    background: #f8fbff;
}

/* Info */
.register-info {
    margin-top: 28px;
    text-align: center;
    font-size: 13px;
    color: #475569;
}

.register-info p {
    margin: 6px 0;
}

.issued-note {
    margin-top: 18px;
    font-size: 12px;
    color: #94a3b8;
    text-align: center;
}

/* Login Section */
.login-section {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background-image: url(../../assets/bg2.jpg);
}

.login-container {
    width: 100%;
    max-width: 420px;
}

.login-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 40px 34px;
    box-shadow: 0 30px 60px rgba(59,130,246,0.2);
    text-align: center;
}

.login-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #60a5fa, #2563eb);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    margin: 0 auto 18px;
    box-shadow: 0 15px 30px rgba(37,99,235,0.4);
}

.login-card h2 {
    font-size: 26px;
    margin-bottom: 8px;
    color: #0f172a;
}

.login-desc {
    font-size: 14px;
    color: #475569;
    margin-bottom: 28px;
}

.login-form {
    text-align: left;
}

.login-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #334155;
}

.login-form input {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 18px;
    border-radius: 10px;
    border: 1px solid #e5edff;
    font-size: 14px;
    outline: none;
}

.login-form input:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59,130,246,0.15);
}

.login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    margin-bottom: 22px;
}

.remember {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #475569;
}

.forgot {
    text-decoration: none;
    color: #2563eb;
}

.forgot:hover {
    text-decoration: underline;
}

.login-btn {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.login-btn:hover {
    opacity: 0.9;
}

.login-note {
    margin-top: 22px;
    font-size: 12px;
    color: #94a3b8;
}





