.business-license-form {
    max-width: 500px;
    margin: 40px auto;
    background: #1c1c1c;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
    color: #fff;
    font-family: 'Vazirmatn', sans-serif;
    direction: rtl;
}

.business-license-form h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #ff5555;
}

.business-license-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.business-license-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: none;
    border-radius: 8px;
    background: #333;
    color: #fff;
}

.business-license-form button {
    background: #e60023;
    color: #fff;
    border: none;
    padding: 12px 20px;
    width: 100%;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
}

.business-license-form button:hover {
    background: #ff0033;
}

.blf-notice {
    text-align: center;
    margin: 20px;
}

.blf-notice.success {
    color: lime;
}
.business-license-form input.error {
    border: 1px solid red !important;
}