.cpg-contact-form-wrap {
	width: 100%;
}

.cpg-contact-form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.cpg-contact-hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.cpg-contact-row {
	display: flex;
	gap: 24px;
	align-items: flex-start;
}

.cpg-contact-field {
	display: flex;
	flex-direction: column;
	gap: 8px;
	width: 100%;
	margin: 0;
	font-weight: 500;
}

.cpg-contact-field span {
	font-size: 14px;
	line-height: 1.3;
	color: #111;
}

.cpg-contact-field input,
.cpg-contact-field textarea {
	width: 100%;
	margin: 0;
	border-radius: 6px;
}

.cpg-contact-field textarea {
	min-height: 140px;
	resize: vertical;
}

.cpg-contact-actions {
	display: flex;
	justify-content: flex-start;
}

.cpg-contact-submit {
	cursor: pointer;
	min-width: 180px;
	background-color: #111;
	color: #fff;
}

.cpg-contact-submit:hover {
	background-color: #02427a;
	color: #fff;
}

.cpg-contact-form.is-sending .cpg-contact-submit {
	opacity: 0.7;
	pointer-events: none;
}

.cpg-contact-status {
	margin: 0;
	padding: 10px 14px;
	border-radius: 6px;
	font-size: 14px;
	line-height: 1.4;
}

.cpg-contact-status.is-success {
	background: #eaf7ee;
	color: #0f7b32;
}

.cpg-contact-status.is-error {
	background: #fdecec;
	color: #c62828;
}

@media only screen and (max-width: 767px) {
	.cpg-contact-row {
		flex-direction: column;
		gap: 16px;
	}

	.cpg-contact-submit {
		width: 100%;
	}
}
