/* KooZone Ultimate Security & Animated UI v1.8 */
:root {
    --kz-purple: #6A1B9A;
    --kz-yellow: #FFC107;
    --kz-success: #198754;
    --kz-error: #dc3545;
    --kz-bg: #f4f6f9;
}

body { margin: 0; padding: 0; font-family: 'Segoe UI', Tahoma, sans-serif; background-color: var(--kz-bg); color: #333; }

/* Sticky Header */
.kz-slr-nav {
    position: sticky; top: 0; z-index: 999; background: #fff;
    display: flex; justify-content: space-between; align-items: center;
    padding: 12px 10%; border-bottom: 1px solid #e0e0e0; box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.kz-slr-logo-img { height: 45px; border-radius: 8px; }

/* Stepper */
.kz-stepper { display: flex; justify-content: center; margin: 30px 0 40px; gap: 12px; }
.step { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: #aaa; }
.step.active { color: var(--kz-purple); }
.step-num { width: 26px; height: 26px; background: #eee; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; }
.step.active .step-num { background: var(--kz-purple); box-shadow: 0 0 10px rgba(106,27,154,0.3); }
.step-line {
    width: 40px;
    height: 3px;
    background: #eee; /* डिफ़ॉल्ट ग्रे कलर */
    margin-top: 11px;
}

.step-line.completed {
    background: var(--kz-success) !important; /* हरा रंग */
}

/* Main Grid */
.kz-slr-grid {
    display: grid; grid-template-columns: 1.2fr 1fr; max-width: 1100px;
    margin: 0 auto 50px; background: #fff; border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08); overflow: hidden;
}

.kz-form-area { padding: 45px; border-right: 1px solid #f0f0f0; }
.kz-info-area { padding: 45px; background: #fcfaff; }

/* Form Fields */
.kz-group { margin-bottom: 28px; position: relative; }
.kz-label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 8px; color: #444; letter-spacing: 0.5px; }
.kz-input-box { position: relative; display: flex; align-items: center; }
.kz-input {
    width: 100%; padding: 14px 0; border: none; border-bottom: 2px solid #ddd;
    font-size: 17px; outline: none; background: transparent; transition: 0.3s;
}
.kz-input:focus { border-bottom-color: var(--kz-purple); }
.kz-input:disabled, .kz-input:read-only { color: #888; border-bottom-style: dashed; background: #fafafa; cursor: not-allowed; }

/* Buttons */
.kz-verify-btn {
    position: absolute; right: 0; background: none; border: none;
    font-weight: bold; color: var(--kz-purple); cursor: pointer; font-size: 15px; padding: 5px;
}
.kz-verify-btn:disabled { color: #ccc; cursor: not-allowed; }

#verifyBtn { background: #eee; color: #999; padding: 8px 20px; border-radius: 6px; position: relative; right: 0; transition: 0.3s; }
#verifyBtn.ready { background: var(--kz-yellow); color: #333; cursor: pointer; box-shadow: 0 4px 10px rgba(255, 193, 7, 0.3); }

.kz-main-btn {
    width: 100%; padding: 16px; background: var(--kz-purple); color: #fff; border: none;
    border-radius: 8px; font-size: 16px; font-weight: bold; cursor: not-allowed; opacity: 0.4;
    transition: 0.4s; margin-top: 15px;
}
.kz-main-btn.active { opacity: 1; cursor: pointer; box-shadow: 0 8px 25px rgba(106, 27, 154, 0.35); }
.kz-main-btn.active:hover { background: #55127e; transform: translateY(-2px); }

/* Animated Icon Benefits Section */
.benefit-row { display: flex; gap: 18px; margin-bottom: 30px; align-items: flex-start; }
.icon-box {
    min-width: 55px; height: 55px; background: #fff; border-radius: 12px;
    display: flex; align-items: center; justify-content: center; font-size: 24px;
    color: var(--kz-purple); box-shadow: 0 4px 15px rgba(106,27,154,0.1);
}

/* Loader */
.kz-loader { display: none; width: 16px; height: 16px; border: 2px solid #fff; border-top: 2px solid transparent; border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Honeypot Trap - Hidden from normal users */
.kz-bot-trap { opacity: 0; position: absolute; top: 0; left: -9999px; z-index: -1; }


/* बटन को सही जगह पर लाने के लिए मैन्युअल फिक्स */
.kz-input-box {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
}

.kz-verify-btn {
    position: absolute !important;
    right: 0 !important;
    bottom: 8px !important; /* इनपुट लाइन के ठीक ऊपर रखने के लिए */
    background: none !important;
    border: none !important;
    color: #6A1B9A !important; /* बैंगनी रंग */
    font-weight: bold !important;
    cursor: pointer !important;
    font-size: 14px !important;
    padding: 5px !important;
    z-index: 10 !important;
    transition: 0.3s !important;
    display: inline-block !important;
}

.kz-verify-btn:hover {
    color: #4a148c !important;
    transform: scale(1.05);
}

.kz-verify-btn:disabled {
    color: #aaa !important;
    cursor: not-allowed !important;
}

/* सेलर रजिस्ट्रेशन बैनर डिजाइन */
.kz-banner-box {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.kz-slr-hero-img {
    width: 100%;
    max-width: 400px; /* जरूरत के हिसाब से छोटा-बड़ा कर सकते हैं */
    height: auto;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
    animation: kzFloat 4s ease-in-out infinite; /* हल्का सा तैरने वाला एनिमेशन */
}

/* बहुत ही स्मूथ और हल्का एनिमेशन ताकि ग्लिच न हो */
@keyframes kzFloat {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* राइट साइड के बॉक्स को थोड़ा और सुंदर बनाना */
.kz-info-area {
    background: linear-gradient(180deg, #fcfaff 0%, #f4f0ff 100%) !important;
    display: flex;
    flex-direction: column;
    align-items: center;
}