/* ================= RESET ================= */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    background: #f1f5f9; /* DEFAULT UNTUK HALAMAN NORMAL */
    color: #1e293b;
}

/* ================= HEADER ================= */
.site-header {
    background: #0f172a;
    padding: 14px 0;
}

.header-inner {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 22px;
}

.main-nav a {
    color: #e5e7eb;
    text-decoration: none;
    font-size: 14px;
}

.main-nav a:hover {
    color: #ffffff;
}

/* ================= MAIN ================= */
.site-content {
    padding: 0;
}

/* =====================================================
   HERO / FULL BACKGROUND PAGE (INILAH KUNCI SOLUSI)
===================================================== */
.hero-section {
    min-height: 100vh;
    background:
        linear-gradient(rgba(8,25,45,0.82), rgba(8,25,45,0.92)),
        url("/assets/bg-dashboard-pelamar.jpg") center / cover no-repeat fixed;
    display: flex;
    justify-content: center;
    padding: 70px 24px;
}

/* ================= FORM CARD ================= */
.form-wrapper {
    width: 100%;
    max-width: 960px;
    background: rgba(255,255,255,0.97);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 30px 70px rgba(0,0,0,.35);
}

/* ================= TYPOGRAPHY ================= */
h2 {
    font-size: 26px;
}

h4 {
    font-size: 16px;
}

p, li {
    font-size: 14px;
    line-height: 1.85;
    color:#333;
}

/* ================= BUTTONS ================= */
.btn {
    padding: 11px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.btn-primary { background:#2563eb;color:#fff }
.btn-secondary { background:#64748b;color:#fff }

/* ================= ACTION BUTTON WRAPPER ================= */
.action-buttons{
    display:flex;
    gap:12px;
    justify-content:center;
    flex-wrap:wrap;
}

/* ================= FOOTER ================= */
.site-footer {
    background: #020617;
    color: #cbd5f5;
    text-align: center;
    padding: 18px 0;
    font-size: 13px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .hero-section {
        padding: 42px 14px;
    }

    .form-wrapper {
        padding: 26px 20px;
        border-radius: 16px;
    }

    h2 {
        font-size: 20px;
    }

    .action-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}

@media (max-width: 420px) {
    h2 {
        font-size: 18px;
    }
}
