/* =========================================================
   Business Registration Form Styles
   ========================================================= */

/* Outer wrapper centers the card */
.business-form-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 2rem 1rem;
    box-sizing: border-box;
}

/* Card container */
.business-card {
    width: 100%;
    max-width: 600px; /* Restrict maximum width */
    border-radius: 12px;
    padding: 2rem;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    box-sizing: border-box;
}

    /* Headings */
    .business-card h5 {
        font-weight: 600;
        margin-bottom: 1rem;
    }

    /* Input styling */
    .business-card .form-control {
        height: 48px;
        font-size: 1rem;
        padding: 10px 14px;
        border-radius: 8px;
        box-sizing: border-box;
    }

    /* Labels */
    .business-card .form-label {
        font-weight: 600;
        margin-bottom: 0.5rem;
        display: block;
    }

    /* Form groups */
    .business-card .form-group {
        margin-bottom: 1rem;
    }

    /* Checkboxes */
    .business-card .form-check {
        margin-bottom: 1rem;
    }

    /* Validation messages */
    .business-card .validation-message {
        color: red;
        font-size: 0.875rem;
    }

    /* Alerts */
    .business-card .alert {
        margin-top: 1rem;
    }

/* Responsive adjustments */
@media (max-width: 768px) {
    .business-card {
        padding: 1.5rem;
        max-width: 95%;
    }
}
