/* Barakat contact form — field styling only. Buttons and contact-info are styled by the active theme. */

.barakat-contact-form {
	width: 100%;
}

.barakat-form__honeypot {
	position: absolute;
	left: -9999px;
	height: 0;
	overflow: hidden;
}

.barakat-form__field {
	margin-block-end: 1rem;
}

.barakat-form label {
	display: block;
	margin-block-end: 0.4rem;
	font-weight: 600;
	color: #0e2a3a;
}

.barakat-form input,
.barakat-form textarea,
.barakat-form select {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	padding: 0.85rem 1rem;
	border: 1px solid #dde5ea;
	border-radius: 12px;
	background: #fff;
	font: inherit;
	color: #1f2a33;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.barakat-form input:focus,
.barakat-form textarea:focus,
.barakat-form select:focus {
	outline: none;
	border-color: #17708f;
	box-shadow: 0 0 0 3px rgba(23, 112, 143, 0.15);
}

.barakat-form textarea {
	resize: vertical;
	min-height: 8rem;
}

.barakat-form__consent-label {
	display: flex;
	align-items: flex-start;
	gap: 0.65rem;
	font-weight: 500;
	line-height: 1.6;
}

.barakat-form__consent-label input {
	width: auto;
	margin-top: 0.25rem;
	flex-shrink: 0;
}

.barakat-form__consent-label a {
	color: #17708f;
	text-decoration: underline;
}

.barakat-form__submit {
	margin-block-start: 1.25rem;
}

.barakat-form__submit .barakat-btn {
	width: 100%;
}

.barakat-form-notice {
	padding: 0.85rem 1.1rem;
	border-radius: 12px;
	margin-block-end: 1.25rem;
	font-weight: 600;
}

.barakat-form-notice--success {
	background: #e8f5ee;
	color: #1f5c3a;
	border: 1px solid #b7e0c7;
}

.barakat-form-notice--error {
	background: #fdecea;
	color: #8a1f17;
	border: 1px solid #f3c4bf;
}
