/* Lymphoma Coalition Contact Form — ID 43627 */

.lc-form-section-43627 {
	background-color: #F5F7FA;
	padding: 72px 24px;
	font-family: 'Roboto', sans-serif;
}

.lc-form-container-43627 {
	max-width: 720px;
	margin: 0 auto;
	background: #ffffff;
	border-radius: 16px;
	box-shadow: 0 4px 32px rgba(131, 39, 107, 0.08), 0 1px 4px rgba(0, 0, 0, 0.06);
	padding: 56px 48px;
}

/* Header */
.lc-form-header-43627 {
	text-align: center;
	margin-bottom: 40px;
}

.lc-form-heading-43627 {
	font-size: 2rem;
	font-weight: 700;
	color: #83276B;
	margin: 0 0 12px;
	letter-spacing: -0.02em;
	line-height: 1.2;
}

.lc-form-subheading-43627 {
	font-size: 1rem;
	color: #4A5568;
	margin: 0;
	line-height: 1.6;
	max-width: 520px;
	margin-left: auto;
	margin-right: auto;
}

/* Success Message */
.lc-form-success-43627 {
	text-align: center;
	padding: 40px 24px;
	animation: lcFadeIn43627 0.4s ease;
}

.lc-success-icon-43627 {
	margin-bottom: 20px;
}

.lc-form-success-43627 p {
	font-size: 1.1rem;
	color: #2D3748;
	line-height: 1.7;
	margin: 0;
	font-weight: 500;
}

/* Form Layout */
.lc-form-43627 {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.lc-form-row-43627 {
	display: flex;
	gap: 20px;
	margin-bottom: 24px;
}

.lc-two-col-43627 {
	flex-direction: row;
}

.lc-two-col-43627 .lc-form-group-43627 {
	flex: 1;
}

.lc-form-group-43627 {
	display: flex;
	flex-direction: column;
	gap: 6px;
	width: 100%;
}

/* Labels */
.lc-label-43627 {
	font-size: 0.875rem;
	font-weight: 600;
	color: #2D3748;
	letter-spacing: 0.01em;
}

.lc-required-43627 {
	color: #83276B;
	margin-left: 2px;
}

.lc-optional-43627 {
	font-weight: 400;
	color: #718096;
	font-size: 0.8rem;
}

/* Inputs */
.lc-input-43627,
.lc-textarea-43627,
.lc-select-43627 {
	width: 100%;
	padding: 12px 16px;
	border: 1.5px solid #CBD5E0;
	border-radius: 8px;
	font-size: 0.9375rem;
	color: #2D3748;
	background: #FAFBFC;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
	outline: none;
	appearance: none;
	-webkit-appearance: none;
	box-sizing: border-box;
	font-family: inherit;
}

.lc-input-43627::placeholder,
.lc-textarea-43627::placeholder {
	color: #A0AEC0;
}

.lc-input-43627:hover,
.lc-textarea-43627:hover,
.lc-select-43627:hover {
	border-color: #008AAB;
	background: #ffffff;
}

.lc-input-43627:focus,
.lc-textarea-43627:focus,
.lc-select-43627:focus {
	border-color: #83276B;
	box-shadow: 0 0 0 3px rgba(131, 39, 107, 0.12);
	background: #ffffff;
}

.lc-input-43627.lc-input-error-43627,
.lc-textarea-43627.lc-input-error-43627,
.lc-select-43627.lc-input-error-43627 {
	border-color: #E53E3E;
	box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

.lc-textarea-43627 {
	resize: vertical;
	min-height: 130px;
}

/* Select Wrapper */
.lc-select-wrapper-43627 {
	position: relative;
	width: 100%;
}

.lc-select-wrapper-43627 .lc-select-43627 {
	padding-right: 40px;
	cursor: pointer;
}

.lc-select-arrow-43627 {
	position: absolute;
	right: 14px;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
	display: flex;
	align-items: center;
}

/* Error Messages */
.lc-error-43627 {
	font-size: 0.8125rem;
	color: #E53E3E;
	min-height: 18px;
	display: block;
	animation: lcFadeIn43627 0.2s ease;
}

.lc-form-error-general-43627 {
	padding: 12px 16px;
	background: #FFF5F5;
	border: 1px solid #FED7D7;
	border-radius: 8px;
	color: #C53030;
	font-size: 0.875rem;
	margin-top: -8px;
}

/* ── File Upload Zone ── */
.lc-upload-zone-43627 {
	width: 100%;
	box-sizing: border-box;
	border: 2px dashed #CBD5E0;
	border-radius: 10px;
	background: #FAFBFC;
	padding: 28px 20px;
	text-align: center;
	cursor: pointer;
	transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
	position: relative;
	outline: none;
}

.lc-upload-zone-43627:hover,
.lc-upload-zone-43627:focus-visible {
	border-color: #83276B;
	background: #fdf6fb;
	box-shadow: 0 0 0 3px rgba(131, 39, 107, 0.1);
}

.lc-upload-zone-43627.lc-drag-over-43627 {
	border-color: #008AAB;
	background: #f0fafd;
	box-shadow: 0 0 0 3px rgba(0, 138, 171, 0.12);
}

.lc-upload-zone-43627.lc-upload-has-file-43627 {
	border-style: solid;
	border-color: #008AAB;
	background: #f0fafd;
}

.lc-upload-zone-43627.lc-upload-error-43627 {
	border-color: #E53E3E;
	box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

.lc-file-input-43627 {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
	z-index: 1;
}

.lc-upload-idle-43627 {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	pointer-events: none;
}

.lc-upload-icon-43627 {
	display: block;
	margin-bottom: 4px;
}

.lc-upload-prompt-43627 {
	font-size: 0.9rem;
	color: #4A5568;
	margin: 0;
	line-height: 1.4;
}

.lc-upload-prompt-43627 strong {
	color: #83276B;
}

.lc-upload-hint-43627 {
	font-size: 0.78rem;
	color: #A0AEC0;
	margin: 0;
}

/* File Preview */
.lc-upload-preview-43627 {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 4px 0;
	pointer-events: none;
	justify-content: center;
	flex-wrap: wrap;
}

.lc-upload-file-icon-43627 {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.lc-upload-filename-43627 {
	font-size: 0.875rem;
	color: #2D3748;
	font-weight: 600;
	word-break: break-all;
	max-width: 260px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.lc-upload-filesize-43627 {
	font-size: 0.78rem;
	color: #718096;
	white-space: nowrap;
}

.lc-upload-remove-43627 {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	border: 1.5px solid #CBD5E0;
	background: #ffffff;
	color: #718096;
	cursor: pointer;
	transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
	pointer-events: all;
	flex-shrink: 0;
	padding: 0;
}

.lc-upload-remove-43627:hover {
	border-color: #E53E3E;
	color: #E53E3E;
	background: #FFF5F5;
}

.lc-upload-remove-43627:focus-visible {
	outline: 2px solid #83276B;
	outline-offset: 2px;
}

/* Checkbox */
.lc-checkbox-group-43627 {
	margin-top: -4px;
}

.lc-checkbox-label-43627 {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	cursor: pointer;
	user-select: none;
}

.lc-checkbox-43627 {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.lc-checkbox-custom-43627 {
	width: 20px;
	height: 20px;
	min-width: 20px;
	border: 2px solid #CBD5E0;
	border-radius: 5px;
	background: #FAFBFC;
	transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 1px;
}

.lc-checkbox-43627:checked + .lc-checkbox-custom-43627 {
	background: #83276B;
	border-color: #83276B;
}

.lc-checkbox-43627:checked + .lc-checkbox-custom-43627::after {
	content: '';
	display: block;
	width: 5px;
	height: 9px;
	border: 2px solid #ffffff;
	border-top: none;
	border-left: none;
	transform: rotate(45deg) translateY(-1px);
}

.lc-checkbox-43627:focus + .lc-checkbox-custom-43627 {
	box-shadow: 0 0 0 3px rgba(131, 39, 107, 0.2);
	border-color: #83276B;
}

.lc-checkbox-text-43627 {
	font-size: 0.875rem;
	color: #4A5568;
	line-height: 1.5;
}

/* Submit Button */
.lc-submit-btn-43627 {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background-color: #83276B;
	color: #ffffff;
	border: none;
	border-radius: 8px;
	padding: 14px 40px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
	width: 100%;
	letter-spacing: 0.02em;
	font-family: inherit;
	box-shadow: 0 2px 8px rgba(131, 39, 107, 0.25);
}

.lc-submit-btn-43627:hover {
	background-color: #6a1f57;
	box-shadow: 0 4px 16px rgba(131, 39, 107, 0.35);
	transform: translateY(-1px);
}

.lc-submit-btn-43627:active {
	transform: translateY(0);
	box-shadow: 0 2px 6px rgba(131, 39, 107, 0.2);
}

.lc-submit-btn-43627:focus-visible {
	outline: 3px solid #008AAB;
	outline-offset: 3px;
}

.lc-submit-btn-43627:disabled {
	opacity: 0.7;
	cursor: not-allowed;
	transform: none;
}

/* Spinner */
.lc-btn-spinner-43627 {
	width: 18px;
	height: 18px;
	border: 2px solid rgba(255,255,255,0.4);
	border-top-color: #ffffff;
	border-radius: 50%;
	animation: lcSpin43627 0.7s linear infinite;
}

/* Honeypot */
.lc-honeypot-43627 {
	position: absolute;
	left: -9999px;
	top: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
	opacity: 0;
	pointer-events: none;
}

/* Animations */
@keyframes lcFadeIn43627 {
	from { opacity: 0; transform: translateY(4px); }
	to   { opacity: 1; transform: translateY(0); }
}

@keyframes lcSpin43627 {
	to { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 640px) {
	.lc-form-container-43627 {
		padding: 36px 24px;
	}

	.lc-form-heading-43627 {
		font-size: 1.6rem;
	}

	.lc-two-col-43627 {
		flex-direction: column;
	}

	.lc-form-row-43627 {
		gap: 0;
	}

	.lc-upload-filename-43627 {
		max-width: 160px;
	}
}
