.form-group {
	margin-bottom: 20px;
}

label {
	display: block;
	font-weight: 600;
	color: #ffffff;
}

.required:after {
	content: " *";
	color: #e74c3c;
}

input[type="text"],
input[type="tel"],
input[type="url"],
input[type="date"],
input[type="number"],
select,
textarea {
	width: 100%;
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 16px;
	transition: border 0.3s;
}

#form_email{
    width: 100%;
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 16px;
	transition: border 0.3s;
}

input:focus,
select:focus,
textarea:focus {
	border-color: #3498db;
	outline: none;
	box-shadow: 0 0 5px rgba(52, 152, 219, 0.3);
}

.radio-group,
.checkbox-group {
	display: flex;
	gap: 15px;
	margin-top: 8px;
}

.radio-option,
.checkbox-option {
	display: flex;
	align-items: center;
}

.radio-option input,
.checkbox-option input {
	margin-right: 8px;
}

.file-input {
	padding: 10px;
	background: #f8f9fa;
	border: 1px dashed #ccc;
	border-radius: 5px;
	text-align: center;
}

.toggle-section {
	display: none;
}

.toggle-section.active {
	display: block;
}


/* Wizard Specific Styles */
.wizard-step {
	display: none;
	animation: fadeIn 0.5s;
}

.wizard-step.active {
	display: block;
}

.wizard-progress {
	display: flex;
	justify-content: space-between;
	margin-bottom: 50px;
	position: relative;
}

.wizard-progress:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 2px;
	background: #ddd;
	z-index: 1;
}

.progress-step {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #67687a;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: bold;
	position: relative;
	z-index: 2;
}

.progress-step.active {
	background: #00bdda;
}

.progress-step.completed {
	background: #0987D8;
}

.progress-label {
	position: absolute;
	top: 45px;
	left: 50%;
	transform: translateX(-50%);
	white-space: nowrap;
	font-size: 12px;
	color: #67687a;
}

.progress-step.active .progress-label {
	color: #00bdda;
	font-weight: 600;
}

.progress-step.completed .progress-label {
	color: #0987D8;
	font-weight: 600;
}

.wizard-nav {
	display: flex;
	justify-content: space-between;
	margin-top: 30px;
}

@media (max-width: 600px) {


	.progress-label {
		display: none;
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}