.bkif-form-wrap {
    margin-top: 2rem;
    padding: 1.5rem 1.75rem;
    border-radius: 18px;
    background: #f8fafc;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.bkif-field {
    margin-bottom: 0.9rem;
}

.bkif-field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.bkif-field input[type="text"],
.bkif-field input[type="email"],
.bkif-field input[type="date"],
.bkif-field textarea {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
}

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

.bkif-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: none;
    padding: 0.55rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    background: #facc15;
    color: #111827;
    box-shadow: 0 14px 30px rgba(234, 179, 8, 0.5);
    transition: transform 0.05s ease, box-shadow 0.1s ease, background-color 0.1s ease;
}

.bkif-btn-primary:hover {
    background: #fbbf24;
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(234, 179, 8, 0.6);
}

.bkif-btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 10px 25px rgba(234, 179, 8, 0.4);
}

.bkif-notice {
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    font-size: 0.9rem;
}

.bkif-notice--success {
    background: #ecfdf3;
    color: #166534;
}
