/* ==========================================================================
   Cohoma Contact Forms
   ========================================================================== */

.cohoma-contact-form p {
	margin-bottom: 16px;
}

/* Labels */
.cohoma-contact-form label {
	display: block;
	margin-bottom: 6px;
	font-size: 15px;
	font-weight: 400;
	color: #1a1a1a;
	line-height: 1.4;
}

/* Red required asterisk */
.cohoma-contact-form .cohoma-req {
	color: #cc0000;
	font-style: normal;
	font-size: 0.8em;
	vertical-align: super;
	line-height: 0;
}

/* Text, email, tel inputs — pill shape */
.cohoma-contact-form input[type="text"],
.cohoma-contact-form input[type="email"],
.cohoma-contact-form input[type="tel"] {
	display: block;
	width: 100%;
	height: 52px;
	padding: 0 22px;
	border: 1px solid #c0bab2;
	border-radius: 52px;
	background: transparent;
	font-size: 15px;
	color: #333;
	box-sizing: border-box;
	outline: none;
	transition: border-color 0.2s ease;
	-webkit-appearance: none;
	appearance: none;
}

.cohoma-contact-form input[type="text"]:focus,
.cohoma-contact-form input[type="email"]:focus,
.cohoma-contact-form input[type="tel"]:focus {
	border-color: #888;
}

/* Textarea — rounded rectangle */
.cohoma-contact-form textarea {
	display: block;
	width: 100%;
	min-height: 115px;
	padding: 16px 22px;
	border: 1px solid #c0bab2;
	border-radius: 20px;
	background: transparent;
	font-size: 15px;
	color: #333;
	font-family: inherit;
	box-sizing: border-box;
	resize: vertical;
	outline: none;
	transition: border-color 0.2s ease;
}

.cohoma-contact-form textarea:focus {
	border-color: #888;
}

/* Submit button */
.cohoma-contact-form button[type="submit"] {
	display: block;
	margin-left: auto;
	padding: 14px 52px;
	background: #231008;
	color: #fff;
	border: none;
	border-radius: 50px;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.02em;
	cursor: pointer;
	transition: background 0.2s ease;
}

.cohoma-contact-form button[type="submit"]:hover {
	background: #3d1c0e;
}

/* Success / error messages */
.custom-ai-form-success {
	padding: 16px 20px;
	background: #f0faf0;
	border: 1px solid #8bc48b;
	border-radius: 12px;
	color: #2a6b2a;
	font-size: 15px;
}

.custom-ai-form-error {
	color: #cc0000;
	font-size: 14px;
	margin-top: 8px;
}
