.ft1-castingpro {
	--ft1-primary: #1a5f4a;
	--ft1-primary-hover: #144a3a;
	--ft1-border: #e2e8f0;
	--ft1-radius: 12px;
	--ft1-text: #1e293b;
	--ft1-muted: #64748b;
	font-family: inherit;
	color: var(--ft1-text);
	max-width: 720px;
	margin: 0 auto;
}

.ft1-form-wrap {
	padding: 1.5rem;
}

.ft1-form__title {
	margin: 0 0 0.5rem;
	font-size: 1.75rem;
}

.ft1-form__subtitle {
	margin: 0 0 1.5rem;
	color: var(--ft1-muted);
}

.ft1-form__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

@media (max-width: 600px) {
	.ft1-form__grid {
		grid-template-columns: 1fr;
	}
}

.ft1-field {
	margin-bottom: 1rem;
}

.ft1-field--full {
	grid-column: 1 / -1;
}

.ft1-field label {
	display: block;
	font-weight: 600;
	margin-bottom: 0.35rem;
}

.ft1-field .required {
	color: #dc2626;
}

.ft1-field input[type="text"],
.ft1-field input[type="email"],
.ft1-field input[type="tel"],
.ft1-field textarea {
	width: 100%;
	padding: 0.65rem 0.85rem;
	border: 1px solid var(--ft1-border);
	border-radius: 8px;
	font-size: 1rem;
	box-sizing: border-box;
}

.ft1-field__hint {
	display: block;
	font-size: 0.85rem;
	color: var(--ft1-muted);
	margin-top: 0.25rem;
}

.ft1-photo-dropzone {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 2rem;
	border: 2px dashed var(--ft1-border);
	border-radius: var(--ft1-radius);
	cursor: pointer;
	transition: border-color 0.2s, background 0.2s;
}

.ft1-photo-dropzone:hover {
	border-color: var(--ft1-primary);
	background: #f8fafc;
}

.ft1-photo-dropzone__icon {
	font-size: 2rem;
}

.ft1-photo-preview {
	text-align: center;
}

.ft1-photo-preview img {
	width: 180px;
	height: 180px;
	object-fit: cover;
	border-radius: var(--ft1-radius);
	border: 3px solid var(--ft1-primary);
}

.ft1-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 1.5rem;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	border: none;
	transition: background 0.2s;
}

.ft1-btn--primary {
	background: var(--ft1-primary);
	color: #fff;
}

.ft1-btn--primary:hover:not(:disabled) {
	background: var(--ft1-primary-hover);
}

.ft1-btn--primary:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.ft1-btn--ghost {
	background: transparent;
	color: var(--ft1-muted);
	margin-top: 0.5rem;
}

.ft1-form__actions {
	margin-top: 1.5rem;
}

.ft1-form__message {
	margin-top: 1rem;
	padding: 1rem;
	border-radius: 8px;
}

.ft1-form__message--success {
	background: #ecfdf5;
	color: #065f46;
	border: 1px solid #a7f3d0;
}

.ft1-form__message--error {
	background: #fef2f2;
	color: #991b1b;
	border: 1px solid #fecaca;
}

.ft1-crop-modal {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
}

.ft1-crop-modal[hidden] {
	display: none !important;
}

.ft1-crop-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
}

.ft1-crop-modal__dialog {
	position: relative;
	background: #fff;
	border-radius: var(--ft1-radius);
	max-width: 520px;
	width: 100%;
	padding: 1.25rem;
	z-index: 1;
}

.ft1-crop-modal__title {
	margin: 0 0 1rem;
	font-size: 1.15rem;
}

.ft1-crop-modal__body {
	max-height: 60vh;
	overflow: hidden;
}

.ft1-crop-modal__body img {
	max-width: 100%;
	display: block;
}

.ft1-crop-modal__actions {
	display: flex;
	gap: 0.75rem;
	justify-content: flex-end;
	margin-top: 1rem;
}

body.ft1-crop-open {
	overflow: hidden;
}
