.bf-form-wrap {
    max-width: 720px;
}
.bf-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.bf-row {
    display: grid;
    gap: 1.25rem;
}
.bf-row--2 {
    grid-template-columns: 1fr 1fr;
}
.bf-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.bf-field label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a1917;
}
.bf-req {
    color: #e8380d;
}
.bf-field input,
.bf-field textarea,
.bf-field select {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1.5px solid #d6d3ce;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.9rem;
    color: #1a1917;
    background: #fff;
    transition: border-color 0.2s;
    outline: none;
    box-sizing: border-box;
}
.bf-field input:focus,
.bf-field textarea:focus,
.bf-field select:focus {
    border-color: #e8380d;
    box-shadow: 0 0 0 3px rgba(232, 56, 13, 0.08);
}
.bf-field input.bf-error,
.bf-field textarea.bf-error,
.bf-field select.bf-error {
    border-color: #dc2626;
}
.bf-field textarea {
    resize: vertical;
    min-height: 140px;
}
.bf-submit-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.bf-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    background: #e8380d;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}
.bf-btn:hover { background: #c42e0b; }
.bf-btn:active { transform: scale(0.98); }
.bf-btn:disabled { background: #ccc; cursor: not-allowed; }
.bf-msg {
    padding: 0.85rem 1.1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 0.5rem;
}
.bf-msg--success {
    background: #f0fdf4;
    border: 1px solid #86efac;
    color: #15803d;
}
.bf-msg--error {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #dc2626;
}
@media (max-width: 600px) {
    .bf-row--2 { grid-template-columns: 1fr; }
}
