.tbcf-form-message {
	padding: 15px 20px;
	border-radius: 8px;
	margin-bottom: 20px;
	font-weight: 500;
}

.tbcf-form-message.success {
	background: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}

.tbcf-form-message.error {
	background: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}

.tbcf-form-loading {
	opacity: 0.6;
	pointer-events: none;
	position: relative;
}

.tbcf-form-loading::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 20px;
	height: 20px;
	margin: -10px 0 0 -10px;
	border: 2px solid #0066ff;
	border-top-color: transparent;
	border-radius: 50%;
	animation: tbcf-spin 0.6s linear infinite;
}

@keyframes tbcf-spin {
	to { transform: rotate(360deg); }
}

.contact-form button[type="submit"]:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

