.uui-form_select-3.w-select {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
	pointer-events: none;
}

.custom-select-container {
	position: relative;
	width: 100%;
	min-height: 2.75rem;
}

.custom-select-trigger {
	position: relative;
	padding: 0.5rem 0.875rem;
	background: white;
	border: 1px solid #e5e7eb;
	border-radius: 0.5rem;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: all 0.3s ease;
	font-size: 1rem;
	line-height: 1.5;
	box-shadow: 0 1px 2px #1018280d;
}

.custom-select-trigger::after {
	content: "";
	width: 0.8rem;
	height: 0.8rem;
	border-right: 2px solid #6b7280;
	border-bottom: 2px solid #6b7280;
	transform: rotate(45deg) translateY(-2px);
	transition: transform 0.3s ease;
}

.custom-select-container.open .custom-select-trigger::after {
	transform: rotate(-135deg) translateY(-2px);
}

.custom-options {
	position: absolute;
	top: calc(100% + 4px);
	left: 0;
	right: 0;
	background: white;
	border: 1px solid #e5e7eb;
	border-radius: 0.5rem;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 10;
}

.custom-select-container.open .custom-options {
	opacity: 1;
	visibility: visible;
}

.custom-option {
	padding: 0.5rem 0.875rem;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 1rem;
	line-height: 1.5;
}

.custom-option:hover {
	background: #f3f4f6;
}

.custom-option.selected {
	background: #eff6ff;
	color: #2563eb;
}

.custom-option.placeholder {
	color: #9ca3af;
	cursor: default;
	pointer-events: none;
	background: #f9fafb;
}

.custom-option.placeholder:hover {
	background: #f9fafb;
}

.custom-submit-button {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	font-size: 1rem;
	font-weight: 600;
	color: white;
	background-color: rgb(127, 86, 217);
	border: 1px solid rgb(127, 86, 217);
	border-radius: 0.5rem;
	padding: 0.625rem 1.125rem;
	cursor: pointer;
	line-height: 1.5;
	transition: all 0.3s ease;
	box-shadow: 0 1px 2px #1018280d;
}

.custom-submit-button:hover {
	background-color: rgb(109, 67, 204);
	border-color: rgb(109, 67, 204);
}

.privacy-consent-container {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: -1.5rem;
}

.privacy-consent-checkbox {
	appearance: none;
	-webkit-appearance: none;
	width: 20px;
	height: 20px;
	border: 2px solid rgb(208, 213, 221);
	border-radius: 0.5rem;
	background-color: white;
	cursor: pointer;
	position: relative;
	transition: all 0.3s ease-in-out;
	margin: 0;
}

.privacy-consent-checkbox:checked {
	background-color: transparent;
	border-color: rgb(127, 86, 217);
}

.privacy-consent-checkbox:checked::after {
	content: "✓";
	position: absolute;
	color: rgb(127, 86, 217);
	font-size: 16px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.privacy-consent-label {
	cursor: pointer;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
	color: #344054;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.5;
	margin-bottom: 0px;
}

.privacy-consent-link {
	color: #344054;
	text-decoration: underline;
	transition: color 0.3s;
	position: relative;
	z-index: 1;
}

.privacy-consent-link:hover {
	color: #1f2937;
}

.privacy-consent-label:not(.privacy-consent-link):hover ~ .privacy-consent-checkbox:not(:checked),
.privacy-consent-checkbox:not(:checked):hover {
	border-color: rgb(127, 86, 217);
}

textarea.uui-form_select-3 {
	resize: vertical;
	min-height: 50px;
	width: 100%;
	border: 1px solid #e5e7eb;
	border-radius: 0.5rem;
	display: flex;
	transition: all 0.3s ease-in-out;
	font-size: 1rem;
	padding: 0.5rem 0.875rem;
	line-height: 1.5;
	box-shadow: 0 1px 2px #1018280d;
}

textarea.uui-form_select-3:hover {
	border-color: #6d43cc;
}

textarea.uui-form_select-3:focus {
	outline: none;
	border-color: #6d43cc;
}

.character-count {
	font-size: 0.875rem;
	color: #666;
	text-align: right;
	margin-top: 0.25rem;
}

.uui-form-button-wrapper {
	margin-top: -0.75rem;
}
