.custom-contact-form-wrapper {
	max-width: 600px;
	margin: 20px auto;
	padding: 20px;
	border: 1px solid #ddd;
	border-radius: 5px;
	background-color: #f9f9f9;
}
.custom-contact-form-wrapper label {
	font-weight: bold;
	display: block;
	margin-bottom: 5px;
	color: #333;
}
.custom-contact-form-wrapper input[type="text"],
.custom-contact-form-wrapper input[type="email"],
.custom-contact-form-wrapper input[type="tel"],
.custom-contact-form-wrapper textarea {
	width: 100%;
	padding: 10px;
	margin-bottom: 15px;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box; /* Ensures padding doesn\'t add to total width */
}
.custom-contact-form-wrapper input[type="submit"] {
	background-color: #0073aa;
	color: white;
	padding: 10px 20px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 16px;
	transition: background-color 0.3s ease;
}
.custom-contact-form-wrapper input[type="submit"]:hover {
	background-color: #005177;
}
.custom-contact-form-message {
	padding: 10px 15px;
	margin-bottom: 20px;
	border-radius: 4px;
	font-size: 14px;
}
.custom-contact-form-message.error {
	background-color: #ffe0e0;
	border: 1px solid #f00;
	color: #f00;
}
.custom-contact-form-message.error ul {
	margin: 0;
	padding-left: 20px;
}
.custom-contact-form-message.success {
	background-color: #e6ffe6;
	border: 1px solid #0a0;
	color: #0a0;
}
