.b2b-registration-form {
    font-family: 'Source Sans Pro', Arial, sans-serif;
    font-size: 14px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 0; /* Add vertical padding */
}

.b2b-registration-form h3 {
    margin-top: 0;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px; /* Add more padding underneath the headings */
}

.b2b-registration-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

.b2b-registration-form input[type="text"],
.b2b-registration-form input[type="email"],
.b2b-registration-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: 'Source Sans Pro', Arial, sans-serif;
    font-size: 14px;
    box-sizing: border-box;
}

.b2b-registration-form textarea {
    resize: vertical;
    min-height: 80px;
}

.b2b-submit-button {
    display: block; /* Make the button a block element */
    width: 100%; /* Make the button span the full width of the container */
    padding: 12px; /* Adjust padding for better touch targets */
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background-color: #28a745; /* Green button */
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-align: center; /* Center the text inside the button */
    transition: background-color 0.3s ease;
    margin-top: 10px; /* Add some spacing above the button */
}

.b2b-submit-button:hover {
    background-color: #218838; /* Darker green on hover */
}

.b2b-success-message {
    color: green;
    font-weight: bold;
    margin-top: 15px;
}

.b2b-error-message {
    color: red;
    font-weight: bold;
    margin-top: 15px;
}