.bncf-form-wrapper {
    max-width: 580px;
    margin: 30px auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 32px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    position: relative;
}

.bncf-form-title {
    margin: 0 0 6px;
    font-size: 22px;
    font-weight: 600;
    color: #1a1a2e;
}

.bncf-form-desc {
    margin: 0 0 20px;
    color: #6b7280;
    font-size: 14px;
}

.bncf-fields {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.bncf-field {
    display: flex;
    flex-direction: column;
}

.bncf-field-full { width: 100%; }
.bncf-field-half { width: calc(50% - 8px); }

.bncf-label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
}

.bncf-req {
    color: #ef4444;
}

.bncf-input,
.bncf-textarea,
.bncf-select {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 15px;
    color: #333;
    background: #fafafa;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
    font-family: inherit;
}

.bncf-input:focus,
.bncf-textarea:focus,
.bncf-select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59,130,246,0.15);
    background: #fff;
}

.bncf-textarea {
    resize: vertical;
    min-height: 100px;
}

.bncf-checkbox-label,
.bncf-radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #374151;
    cursor: pointer;
    padding: 4px 0;
}

.bncf-radio-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bncf-submit {
    width: 100%;
    padding: 13px 20px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.1s;
    margin-top: 4px;
}

.bncf-submit:hover {
    opacity: 0.9;
}

.bncf-submit:active {
    transform: scale(0.98);
}

.bncf-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.bncf-message {
    margin-top: 16px;
    padding: 14px 18px;
    border-radius: 6px;
    font-size: 15px;
    text-align: center;
}

.bncf-message.bncf-success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.bncf-message.bncf-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.bncf-form-wrapper.bncf-submitted .bncf-fields {
    display: none;
}

.bncf-form-wrapper.bncf-submitted .bncf-message {
    display: block !important;
    font-size: 16px;
    padding: 24px;
}

/* Honeypot */
.bncf-hp-wrap {
    position: absolute;
    left: -9999px;
    top: -9999px;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

@media (max-width: 560px) {
    .bncf-field-half {
        width: 100%;
    }
    .bncf-form-wrapper {
        padding: 20px;
        margin: 16px auto;
    }
}
