.fcb-container {
	max-width: 100%;
	margin: 0 auto;
	font-family: inherit;
}
.fcb-heading {
	margin-bottom: 5px;
}
.fcb-subheading {
	margin-bottom: 20px;
	color: #666;
}
.fcb-form {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.fcb-field-group {
	display: flex;
	flex-direction: column;
}
.fcb-field-group label {
	margin-bottom: 5px;
	font-weight: 600;
}
.fcb-form input[type="text"],
.fcb-form input[type="email"],
.fcb-form input[type="tel"],
.fcb-form input[type="date"],
.fcb-form select,
.fcb-form textarea {
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-family: inherit;
	font-size: 16px;
	width: 100%;
	box-sizing: border-box;
}
.fcb-form input:focus,
.fcb-form select:focus,
.fcb-form textarea:focus {
	outline: none;
	border-color: #0073aa;
	box-shadow: 0 0 0 1px #0073aa;
}
.fcb-submit-btn {
	padding: 12px 20px;
	background-color: #0073aa;
	color: #fff;
	border: none;
	border-radius: 4px;
	font-size: 16px;
	cursor: pointer;
	font-weight: 600;
	transition: background-color 0.3s, opacity 0.3s;
	margin-top: 10px;
}
.fcb-submit-btn:hover {
	background-color: #005a87;
}
.fcb-submit-btn:disabled {
	opacity: 0.7;
	cursor: not-allowed;
}
.fcb-message {
	padding: 15px;
	border-radius: 4px;
	margin-top: 15px;
	font-weight: 500;
}
.fcb-message.success {
	background-color: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
	display: block !important;
}
.fcb-message.error {
	background-color: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
	display: block !important;
}
