/**
 * Reusable Contact Form Component Styles
 * Base styles for the contact form component
 */

.contact-form {
	width: 100%;
}

.contact-form__headline {
	margin: 0 0 24px 0;
}

.contact-form__form {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

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

.contact-form__field {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.contact-form__label {
	/* Typography: 16px body text - not in global.css, keeping for now */
	font-family: 'Bricolage Grotesque', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 162%;
	letter-spacing: -0.005em;
	color: var(--color-primary-text);
}

.contact-form__input {
	width: 100%;
	padding: 12px 16px;
	/* Typography handled by .text-form-input */
	background: var(--color-bg-white);
	border: 1px solid var(--color-border-medium);
	border-radius: 10px;
	outline: none;
	transition: border-color 0.2s ease;
	box-sizing: border-box;
}

.contact-form__input:focus {
	border-color: var(--color-teal-border);
}

.contact-form__input::placeholder {
	color: var(--color-gray-dark);
}

.contact-form__submit {
	padding: 12px 50px;
	/* Typography handled by .text-button */
	background: var(--color-bg-teal);
	color: var(--color-primary-text);
	border: none;
	border-radius: 7px;
	cursor: pointer;
	transition: background-color 0.2s ease;
	width: fit-content;
	align-self: flex-start;
}

.contact-form__submit:hover {
	background: var(--color-bg-teal);
}

.contact-form__submit:active {
	background: var(--color-bg-teal);
}

@media (max-width: 1023px) {
	.contact-form__submit {
		width: 100%;
	}
}

/* Variant-specific styles are in their respective component CSS files */


