/* AfroBookings Form Security & Anti-Abuse System Styles */

.form-security-honeypot {
    display: none !important;
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 0 !important;
    height: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.custom-captcha-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 14px 16px;
    margin: 12px 0 16px 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #0f172a;
    transition: all 0.2s ease;
}

.custom-captcha-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.captcha-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.captcha-badge {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #475569;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.captcha-badge svg,
.captcha-badge i {
    color: #0f172a;
}

.captcha-prompt-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.captcha-prompt-text {
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
}

.btn-refresh-captcha {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #475569;
    border-radius: 4px;
    padding: 4px 8px;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    line-height: 1;
}

.btn-refresh-captcha:hover {
    background: #f1f5f9;
    color: #0f172a;
    border-color: #94a3b8;
}

.captcha-input-row {
    display: flex;
    gap: 8px;
}

.captcha-answer-field {
    flex: 1;
    height: 38px;
    padding: 6px 12px;
    font-size: 14px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    background: #ffffff;
    color: #0f172a;
    box-sizing: border-box;
}

.captcha-answer-field:focus {
    border-color: #0f172a;
    outline: none;
    box-shadow: 0 0 0 2px rgba(15, 23, 42, 0.1);
}

.captcha-error-msg {
    color: #dc2626;
    font-size: 12px;
    margin-top: 6px;
    display: none;
}
