/*
 * IT Star Services — Shared Form Theme
 * Ensures all forms match the contact form visual style (.itstar-cf-*)
 */

/* ── WRAP ──────────────────────────────────────────────── */
.itstar-kb-signup,
.itstar-kb-leaver-wrap,
.itstar-kb-reonboard-wrap,
.itstar-gdpr-wrap {
    background: #fff;
    border-radius: 12px;
    padding: 36px 40px;
    box-shadow: 0 2px 16px rgba(10,22,40,.10);
    max-width: 720px;
    margin: 28px auto 0;
    font-family: inherit;
}
@media(max-width:600px){
    .itstar-kb-signup,
    .itstar-kb-leaver-wrap,
    .itstar-kb-reonboard-wrap,
    .itstar-gdpr-wrap { padding:24px 20px; }
}

/* ── INPUTS ────────────────────────────────────────────── */
.itstar-kb-signup__input,
.itstar-kb-signup__user-input,
.itstar-gdpr-input {
    padding: 10px 14px;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-size: .875rem;
    font-family: inherit;
    color: #1e293b;
    background: #f8fafc;
    transition: border-color .18s;
    outline: none;
    box-sizing: border-box;
}
.itstar-kb-signup__input:focus,
.itstar-kb-signup__user-input:focus,
.itstar-gdpr-input:focus {
    border-color: #1a5dab;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(26,93,171,.08);
}

/* ── LABELS ────────────────────────────────────────────── */
.itstar-kb-signup__label,
.itstar-gdpr-label { font-size:.82rem; font-weight:700; color:#334155; }

/* ── BUTTONS ───────────────────────────────────────────── */
.itstar-kb-signup__submit,
.itstar-gdpr-btn {
    background: #1a5dab;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: .9rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background .18s, transform .18s;
}
.itstar-kb-signup__submit:hover:not(:disabled),
.itstar-gdpr-btn:hover:not(:disabled) { background:#2979d8; transform:translateY(-1px); }
.itstar-kb-signup__submit:disabled,
.itstar-gdpr-btn:disabled { background:#94a3b8; cursor:not-allowed; transform:none; }

/* ── SUCCESS / ERROR ───────────────────────────────────── */
.itstar-kb-success, .itstar-gdpr-success .itstar-gdpr-success {
    background:#f0fdf4; border:1px solid #bbf7d0; border-radius:8px;
    padding:16px 20px; font-size:.9rem; color:#15803d; font-weight:500;
    margin-bottom:20px; line-height:1.5;
}
.itstar-kb-error, .itstar-gdpr-error {
    background:#fef2f2; border:1px solid #fecaca; border-radius:8px;
    padding:14px 18px; font-size:.875rem; color:#991b1b; font-weight:500;
    margin-bottom:20px;
}

/* ── GDPR NOTICE ───────────────────────────────────────── */
.itstar-gdpr-notice {
    background:#f0f7ff; border-left:4px solid #1a5dab;
    border-radius:0 6px 6px 0; padding:14px 16px;
    margin-bottom:28px; font-size:.875rem; line-height:1.6; color:#1e3a5f;
}

/* ── CONSENT BOX ───────────────────────────────────────── */
.itstar-gdpr-consent {
    background:#f8fafc; border:1.5px solid #e2e8f0; border-radius:8px; padding:14px 16px;
}
.itstar-gdpr-checkbox-label {
    display:flex; align-items:flex-start; gap:10px; cursor:pointer;
    font-size:.875rem; color:#0a1628; font-weight:500; line-height:1.5;
}
.itstar-gdpr-checkbox-label input[type=checkbox] {
    margin-top:3px; width:16px; height:16px; flex-shrink:0;
    accent-color:#1a5dab; cursor:pointer;
}
