/* Contact Form 7 – Feldstyles (Figma) */

.form-wrapper {
	--druckio-field-height: 50px;
	--druckio-field-padding: 14px;
	--druckio-field-radius: 10px;
	--druckio-field-border: #d1d5db;
	--druckio-field-bg: #ffffff;
	--druckio-field-text: #1a1f2e;
	--druckio-field-placeholder: #9ca3af;
	--druckio-field-focus: var(--primary, #2e6bff);
	--druckio-textarea-min-height: 140px;
}

.form-wrapper .wpcf7-form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.form-wrapper .wpcf7-form > p {
	margin: 0;
}

.form-wrapper .wpcf7-form label {
	display: block;
	margin-bottom: 0.5rem;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.4;
	color: var(--druckio-field-text);
}

.form-wrapper .wpcf7-form-control-wrap {
	display: block;
	width: 100%;
}

.form-wrapper .wpcf7-form-control:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]) {
	box-sizing: border-box;
	display: block;
	width: 100%;
	align-self: stretch;
	padding: var(--druckio-field-padding);
	font-family: inherit;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.375;
	color: var(--druckio-field-text);
	background-color: var(--druckio-field-bg);
	border: 1px solid var(--druckio-field-border);
	border-radius: var(--druckio-field-radius);
	transition:
		border-color 220ms cubic-bezier(0.4, 0, 0.2, 1),
		box-shadow 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

.form-wrapper .wpcf7-form-control:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"])::placeholder {
	color: var(--druckio-field-placeholder);
	opacity: 1;
}

.form-wrapper .wpcf7-form-control:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]):hover {
	border-color: #b8bec8;
}

.form-wrapper .wpcf7-form-control:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]):focus,
.form-wrapper .wpcf7-form-control:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]):focus-visible {
	border-color: var(--druckio-field-focus);
	outline: none;
	box-shadow: 0 0 0 3px rgba(46, 107, 255, 0.15);
}

/* Text, E-Mail, Tel, URL … */
.form-wrapper input.wpcf7-form-control:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]) {
	height: var(--druckio-field-height);
	min-height: var(--druckio-field-height);
}

/* Dropdown */
.form-wrapper select.wpcf7-form-control {
	height: var(--druckio-field-height);
	min-height: var(--druckio-field-height);
	padding-right: 2.75rem;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6L8 10L12 6' stroke='%231A1F2E' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	background-size: 16px 16px;
	cursor: pointer;
}

/* Nachricht */
.form-wrapper textarea.wpcf7-form-control {
	min-height: var(--druckio-textarea-min-height);
	height: auto;
	resize: vertical;
}

.form-wrapper .wpcf7-not-valid-tip {
	margin-top: 0.375rem;
	font-size: 0.8125rem;
}

.form-wrapper .wpcf7 form .wpcf7-response-output {
	margin: 1rem 0 0;
	border-radius: var(--druckio-field-radius);
}
