/**
 * Native theme forms (contact + trial).
 */

.tqe-native-form .tqe-field {
	margin-bottom: 0;
}

.tqe-label {
	display: block;
	font-family: var(--tqe-font-sans, 'Plus Jakarta Sans', sans-serif);
	font-size: 14px;
	font-weight: 600;
	color: #3c2415;
	margin-bottom: 0.5rem;
}

.tqe-input,
.tqe-textarea {
	width: 100%;
	padding: 0.875rem 1rem;
	border: 1px solid rgba(106, 43, 8, 0.15);
	border-radius: 0.75rem;
	background: #fff;
	color: #1b1b1c;
	font-family: var(--tqe-font-sans, 'Plus Jakarta Sans', sans-serif);
	font-size: 16px;
	line-height: 1.5;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.tqe-input:focus,
.tqe-textarea:focus {
	outline: none;
	border-color: #6a2b08;
	box-shadow: 0 0 0 3px rgba(106, 43, 8, 0.12);
}

.tqe-textarea {
	resize: vertical;
	min-height: 120px;
}

.tqe-form-notice {
	margin-bottom: 1.5rem;
	padding: 1rem 1.25rem;
	border-radius: 0.75rem;
}

.tqe-form-notice--success {
	background: rgba(45, 122, 70, 0.1);
	border: 1px solid rgba(45, 122, 70, 0.25);
	color: #2d7a46;
}

.tqe-form-notice--error {
	background: rgba(186, 26, 26, 0.08);
	border: 1px solid rgba(186, 26, 26, 0.2);
	color: #ba1a1a;
}
