.bf-wrapper-0673e0b6 {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    padding: 32px;
    max-width: 780px;
    margin: 0 auto;
    font-family: inherit;
}

/* Progress Tracker */
.bf-progress-bar {
    margin-bottom: 32px;
}
.bf-progress-text {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 600;
    color: #4b5563;
    margin-bottom: 8px;
}
.bf-progress-track {
    background-color: #f3f4f6;
    height: 8px;
    border-radius: 9999px;
    overflow: hidden;
}
.bf-progress-fill {
    height: 100%;
    border-radius: 9999px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Steps Framework */
.bf-step {
    display: none;
}
.bf-step.active {
    display: block;
}
.bf-step-header {
    margin-bottom: 24px;
}
.bf-step-number {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 4px;
    text-transform: uppercase;
}
.bf-step-title {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 8px 0;
    line-height: 1.25;
}
.bf-step-desc {
    font-size: 15px;
    color: #4b5563;
    margin: 0;
    line-height: 1.5;
}

/* Options Grid / Cards */
.bf-options-grid {
    display: grid;
    gap: 16px;
    margin-bottom: 32px;
}
.bf-options-grid.col-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.bf-options-grid.col-1 {
    grid-template-columns: 1fr;
}
@media (max-width: 640px) {
    .bf-options-grid.col-2 {
        grid-template-columns: 1fr;
    }
}

.bf-option-card {
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 20px;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    transition: all 0.2s ease-in-out;
    position: relative;
}
.bf-option-card:hover {
    border-color: #d1d5db;
    background-color: #f9fafb;
}
.bf-option-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.bf-card-dot {
    width: 18px;
    height: 18px;
    border: 2px solid #d1d5db;
    border-radius: 50%;
    margin-right: 14px;
    flex-shrink: 0;
    margin-top: 3px;
    display: inline-block;
    position: relative;
    transition: all 0.2s;
}
.bf-card-dot::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: #ffffff;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.2s ease-in-out;
}
.bf-option-card.active .bf-card-dot::after {
    transform: translate(-50%, -50%) scale(1);
}
.bf-card-content {
    display: flex;
    flex-direction: column;
}
.bf-card-title {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
}
.bf-card-desc {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.4;
}

/* Fields Layout */
.bf-fields-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 32px;
}
.bf-form-group {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.bf-form-group.col-half {
    width: calc(50% - 10px);
}
@media (max-width: 640px) {
    .bf-form-group.col-half {
        width: 100%;
    }
}
.bf-input-label {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
}
.bf-input-label.required::after {
    content: ' *';
    color: #ef4444;
}
.bf-input, .bf-select, .bf-textarea {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    background-color: #ffffff;
    box-sizing: border-box;
}
.bf-input:focus, .bf-select:focus, .bf-textarea:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.bf-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #4b5563;
    margin-top: 8px;
    cursor: pointer;
}

/* Toggle Switch Styling */
.bf-toggle-group {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
}
.bf-toggle-text {
    font-size: 14px;
    font-weight: 600;
    color: #4b5563;
}
.bf-toggle-switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 24px;
}
.bf-toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.bf-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}
.bf-toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}
.bf-toggle-switch input:checked + .bf-toggle-slider:before {
    transform: translateX(24px);
}

/* Action Buttons */
.bf-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    border-top: 1px solid #f3f4f6;
    padding-top: 24px;
}
.bf-btn {
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    outline: none;
}
.bf-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.bf-btn-next, .bf-btn-submit {
    color: #ffffff;
}
.bf-btn-prev {
    background-color: #f3f4f6;
    color: #4b5563;
}
.bf-btn-prev:hover {
    background-color: #e5e7eb;
}

/* Message Box */
.bf-form-message {
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 500;
}
.bf-form-message.success {
    background-color: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}
.bf-form-message.error {
    background-color: #fef2f2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}
