/* ================= GLOBAL ================= */
body{
    margin:0;
    font-family:'Poppins',sans-serif;
    background:radial-gradient(circle at top,#1b1335 0%,#050509 45%,#020308 100%);
    color:#f9f6ff;
}

.k-wrap{
    max-width:1240px;
    margin:auto;
    padding:40px 18px 70px;
}

/* ================= LAYOUT ================= */
.k-flex{
    display:flex;
    gap:28px;
    flex-wrap:wrap;
}

.k-form{
    flex:1 1 360px;
    background:linear-gradient(145deg,#0e0c1c,#090713);
    border:1px solid rgba(255,222,150,.25);
    padding:24px;
    border-radius:22px;
    box-shadow:0 18px 40px rgba(0,0,0,.7);
}

.k-card{
    flex:1 1 640px;
    background:linear-gradient(145deg,#090914,#0d0a1e);
    border:1px solid rgba(255,222,150,.22);
    padding:26px;
    border-radius:24px;
    box-shadow:0 18px 40px rgba(0,0,0,.7);
}

/* ================= HEADINGS ================= */
h1,h3{
    color:#ffdf85;
    margin:0 0 14px;
}
p{
    font-size:13px;
    color:#e7d8b3;
}

/* ================= SWITCH ================= */
.k-switch{
    display:flex;
    background:#05030a;
    border-radius:999px;
    padding:4px;
    margin-bottom:12px;
    border:1px solid rgba(255,222,150,.25);
}

.k-switch button{
    flex:1;
    border:none;
    padding:9px 6px;
    background:transparent;
    color:#d6c9a4;
    border-radius:999px;
    font-size:12px;
    cursor:pointer;
    transition:.25s;
}

.k-switch button.active{
    background:linear-gradient(135deg,#ffdf85,#ffb347);
    color:#241507;
    box-shadow:0 6px 16px rgba(255,191,84,.45);
}

/* Locked Premium */
.k-switch button[data-locked]{
    opacity:.65;
}

/* ================= FORM ================= */
label{
    display:block;
    margin:10px 0 4px;
    font-size:12px;
    color:#ffde93;
}

input,select{
    width:100%;
    padding:10px;
    background:#120f22;
    border:1px solid #6d5224;
    color:#fff;
    border-radius:10px;
    outline:none;
    font-size:13px;
}

input:focus,select:focus{
    border-color:#ffce5c;
    box-shadow:0 0 12px rgba(255,206,92,.5);
}

/* ================= BUTTON ================= */
.k-btn{
    width:100%;
    margin-top:18px;
    padding:12px;
    border:none;
    border-radius:999px;
    background:linear-gradient(135deg,#ffce5c,#ff9a3c);
    color:#231407;
    font-weight:600;
    cursor:pointer;
    font-size:15px;
    box-shadow:0 8px 22px rgba(255,184,84,.4);
    transition:.25s;
}
.k-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 14px 30px rgba(255,184,84,.5);
}

/* ================= ERROR ================= */
.k-error{
    background:#3b1111;
    border:1px solid #ff6b6b;
    color:#ffb8b8;
    padding:9px 11px;
    border-radius:10px;
    font-size:12px;
    margin-bottom:12px;
}

/* ================= PDF ================= */
.pdf-btn{
    display:inline-block;
    margin-top:16px;
    padding:10px 18px;
    border-radius:999px;
    background:linear-gradient(135deg,#ffb347,#ffdf85);
    color:#221207;
    font-size:13px;
    font-weight:600;
    text-decoration:none;
    box-shadow:0 10px 22px rgba(255,191,84,.52);
    transition:.25s;
}
.pdf-btn:hover{
    transform:translateY(-2px);
}

/* ================= RESPONSIVE ================= */
@media(max-width:900px){
    .k-flex{
        flex-direction:column;
    }
}
