.meb2b-registration-form {
	max-width: 900px;
	margin: 0 auto;
	padding: 20px;
}

.meb2b-registration-form .row {
	display: flex;
	flex-wrap: wrap;
	margin-left: -15px;
	margin-right: -15px;
}

.meb2b-registration-form .col-md-6,
.meb2b-registration-form .col-md-12 {
	position: relative;
	width: 100%;
	padding-left: 15px;
	padding-right: 15px;
}

@media (min-width: 768px) {
	.meb2b-registration-form .col-md-6 {
		flex: 0 0 50%;
		max-width: 50%;
	}
	
	.meb2b-registration-form .col-md-12 {
		flex: 0 0 100%;
		max-width: 100%;
	}
}

.meb2b-form-row {
	margin-bottom: 20px;
}

.meb2b-form-row label {
	display: block;
	margin-bottom: 5px;
	font-weight: bold;
}

.meb2b-form-row .required {
	color: #d63638;
}

.meb2b-form-row input[type="text"],
.meb2b-form-row input[type="email"],
.meb2b-form-row input[type="password"],
.meb2b-form-row select {
	width: 100%;
	padding: 8px;
	border: 1px solid #ddd;
	border-radius: 4px;
}

.meb2b-form-row input[type="checkbox"] {
	margin-right: 5px;
}

.meb2b-form-row button {
	padding: 10px 20px;
	background-color: #2271b1;
	color: #fff;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}

.meb2b-form-row button:hover {
	background-color: #135e96;
}

.meb2b-form-row button:disabled {
	background-color: #ccc;
	cursor: not-allowed;
}

#meb2b-registration-messages {
	margin-top: 20px;
}

.meb2b-message {
	padding: 10px;
	border-radius: 4px;
	margin-bottom: 10px;
}

.meb2b-message.meb2b-success {
	background-color: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}

.meb2b-message.meb2b-error {
	background-color: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}

.meb2b-message ul {
	margin: 0;
	padding-left: 20px;
}

