/* General Form Container */
.b2b-login-form-container {
    max-width: 400px;
    margin: 40px auto;
    padding: 20px;
    background-color: #ffffff; /* Flat white background */
    border: none; /* Remove border */
    box-shadow: none; /* Remove shadow */
    font-family: 'Source Sans Pro', sans-serif;
}

/* Form Labels */
.b2b-login-form-container label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #333333; /* Dark gray text */
}

/* Input Fields */
.b2b-login-form-container input[type="email"],
.b2b-login-form-container input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    font-size: 14px;
    border: 1px solid #ddd; /* Light gray border */
    border-radius: 0; /* Remove rounded corners */
    box-shadow: none; /* Remove shadow */
    background-color: #ffffff; /* Flat white background */
}

/* Buttons */
.b2b-login-button {
    display: inline-block;
    width: 100%;
    padding: 12px;
    font-size: 14px;
    color: #fff; /* White text */
    background-color: #73B158; /* Green button */
    border: none; /* Remove border */
    border-radius: 0; /* Remove rounded corners */
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    box-shadow: none; /* Remove shadow */
}

.b2b-login-button:hover {
    background-color: #5a8f44; /* Slightly darker green on hover */
}

/* Error and Success Messages */
.b2b-login-error,
.b2b-login-success {
    margin-bottom: 15px;
    padding: 10px;
    font-size: 14px;
    border: none; /* Remove border */
    border-radius: 0; /* Remove rounded corners */
    box-shadow: none; /* Remove shadow */
}

.b2b-login-error {
    color: #d8000c; /* Red text for errors */
    background-color: #f8d7da; /* Light red background */
}

.b2b-login-success {
    color: #155724; /* Green text for success */
    background-color: #d4edda; /* Light green background */
}