/* Contact Form Styles */
.rh-contact-form-wrapper {
	margin: 20px 0;
}

.rh-contact-form {
	max-width: 600px;
}

.rh-form-field {
	margin-bottom: 20px;
}

.rh-form-field label {
	display: block;
	margin-bottom: 5px;
	font-weight: 600;
}

.rh-form-field .required {
	color: #dc3232;
	margin-left: 3px;
}

.rh-form-field input[type="text"],
.rh-form-field input[type="email"],
.rh-form-field input[type="number"],
.rh-form-field input[type="tel"],
.rh-form-field input[type="url"],
.rh-form-field input[type="search"],
.rh-form-field input[type="password"],
.rh-form-field textarea,
.rh-form-field input,
.rh-form-field textarea {
	width: 100%;
	padding: 8px 12px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 14px;
	line-height: 1.5;
	color: #2563eb !important; /* Bold blue like submit button background */
	font-weight: 600;
}

.rh-form-field textarea {
	resize: vertical;
	min-height: 100px;
}

.rh-form-field input:focus,
.rh-form-field textarea:focus {
	outline: none;
	border-color: #2271b1;
	box-shadow: 0 0 0 1px #2271b1;
}

.rh-checkbox-option,
.rh-radio-option {
	display: block;
	margin: 8px 0;
	font-weight: normal;
}

.rh-checkbox-option input,
.rh-radio-option input {
	margin-right: 8px;
}

.rh-form-submit {
	margin-top: 25px;
}

.rh-submit-button {
	background: #2271b1;
	color: #fff;
	border: none;
	padding: 12px 24px;
	font-size: 16px;
	font-weight: 600;
	border-radius: 4px;
	cursor: pointer;
	transition: background 0.2s;
}

.rh-submit-button:hover {
	background: #135e96;
}

.rh-submit-button:disabled {
	background: #ccc;
	cursor: not-allowed;
}

.rh-form-messages {
	margin: 20px 0;
	padding: 15px;
	border-radius: 4px;
}

.rh-message-success {
	background: #065f46; /* Much darker green */
	border: 1px solid #047857;
	color: #ffffff; /* White text */
}

.rh-message-error {
	background: #f8d7da;
	border: 1px solid #f5c6cb;
	color: #721c24;
}

.rh-form-messages p {
	margin: 0;
}
