/* Base Styles */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #333;
	line-height: 1.6;
}

/* Wizard Container */
.wizard-container {
	width: 100%;
	max-width: 1000px;
	background: white;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	animation: fadeIn 0.5s ease-out;
}

.wizard-header {
	text-align: center;
	padding: 30px 20px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
}

	.wizard-header h1 {
		font-size: 2.2rem;
		margin-bottom: 10px;
	}

	.wizard-header p {
		font-size: 1.1rem;
		opacity: 0.9;
	}

	.wizard-header i {
		margin-right: 10px;
	}

/* Wizard Steps */
.wizard-steps {
	display: flex;
	justify-content: space-between;
	padding: 20px 40px;
	background-color: #f8f9fa;
	position: relative;
}

.step {
	flex: 1;
	text-align: center;
	position: relative;
	z-index: 1;
}

.step-number {
	width: 40px;
	height: 40px;
	background-color: #ddd;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 8px;
	font-weight: bold;
	color: #666;
	transition: all 0.3s ease;
	border: 3px solid white;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.step-title {
	font-size: 0.9rem;
	color: #666;
	transition: all 0.3s ease;
}

.step.active .step-number {
	background-color: #4CAF50;
	color: white;
	transform: scale(1.1);
}

.step.active .step-title {
	color: #333;
	font-weight: bold;
}

.step.completed .step-number {
	background-color: #8BC34A;
	color: white;
}

.step:not(:last-child):after {
	content: '';
	position: absolute;
	top: 22px;
	left: 60%;
	width: 80%;
	height: 3px;
	background-color: #ddd;
	z-index: -1;
	transition: all 0.3s ease;
}

.step.completed:not(:last-child):after {
	background-color: #8BC34A;
}

/* Wizard Content */
.wizard-content {
	padding: 30px;
	min-height: 400px;
	display: none;
	animation: slideIn 0.4s ease-out;
}

	.wizard-content.active {
		display: block;
	}

	.wizard-content h2 {
		margin-bottom: 10px;
		color: #444;
		font-size: 1.5rem;
	}

		.wizard-content h2 i {
			margin-right: 10px;
			color: #667eea;
		}

.subtitle {
	color: #666;
	margin-bottom: 25px;
	font-size: 0.95rem;
}

/* Feature Grid */
.feature-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 15px;
	margin: 20px 0;
}

.feature-item {
	border: 2px solid #e0e0e0;
	padding: 20px 15px;
	border-radius: 8px;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
	background-color: white;
	position: relative;
	overflow: hidden;
}

	.feature-item:hover {
		border-color: #667eea;
		transform: translateY(-3px);
		box-shadow: 0 5px 15px rgba(102, 126, 234, 0.2);
	}

	.feature-item.selected {
		background-color: #f0f4ff;
		border-color: #667eea;
	}

		.feature-item.selected:after {
			content: '\f00c';
			font-family: 'Font Awesome 6 Free';
			font-weight: 900;
			position: absolute;
			top: 5px;
			right: 5px;
			width: 20px;
			height: 20px;
			background-color: #4CAF50;
			color: white;
			border-radius: 50%;
			display: flex;
			align-items: center;
			justify-content: center;
			font-size: 0.7rem;
		}

	.feature-item i {
		font-size: 1.8rem;
		margin-bottom: 10px;
		color: #667eea;
	}

/* Form Styles */
.form-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 20px;
}

.form-group {
	margin-bottom: 20px;
}

	.form-group label {
		display: block;
		margin-bottom: 8px;
		font-weight: 600;
		color: #555;
	}

		.form-group label i {
			margin-right: 8px;
			width: 16px;
			text-align: center;
		}

	.form-group input, .form-group select {
		width: 100%;
		padding: 12px 15px;
		border: 1px solid #ddd;
		border-radius: 6px;
		font-size: 1rem;
		transition: all 0.3s ease;
	}

		.form-group input:focus, .form-group select:focus {
			outline: none;
			border-color: #667eea;
			box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
		}

.password-container {
	position: relative;
}

.toggle-password {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
	color: #666;
}

/* Footer Buttons */
.wizard-footer {
	display: flex;
	justify-content: space-between;
	margin-top: 30px;
	padding-top: 20px;
	border-top: 1px solid #eee;
}

.btn {
	padding: 12px 25px;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	font-size: 1rem;
	font-weight: 600;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

	.btn i {
		margin: 0 5px;
	}

.btn-next {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
}

	.btn-next:hover {
		transform: translateY(-2px);
		box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
	}

.btn-prev {
	background-color: #f1f1f1;
	color: #666;
}

	.btn-prev:hover {
		background-color: #e0e0e0;
	}

.btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	transform: none !important;
	box-shadow: none !important;
}

/* Success Modal */
.success-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

	.success-modal.show {
		opacity: 1;
		visibility: visible;
	}

.modal-content {
	background: white;
	padding: 40px;
	border-radius: 10px;
	text-align: center;
	max-width: 400px;
	width: 90%;
	transform: scale(0.9);
	transition: all 0.3s ease;
}

.success-modal.show .modal-content {
	transform: scale(1);
}

.checkmark {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto 20px;
	color: white;
	font-size: 2.5rem;
}

	.checkmark.animate {
		animation: bounceIn 0.6s ease-out;
	}

.btn-finish {
	background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
	color: white;
	margin-top: 20px;
	padding: 12px 30px;
}

	.btn-finish:hover {
		transform: translateY(-2px);
		box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
	}

/* Animations */
@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes slideIn {
	from {
		opacity: 0;
		transform: translateX(20px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes bounceIn {
	0% {
		transform: scale(0.1);
		opacity: 0;
	}

	60% {
		transform: scale(1.2);
		opacity: 1;
	}

	100% {
		transform: scale(1);
	}
}

/* Responsive */
@media (max-width: 768px) {
	.wizard-container {
		width: 95%;
	}

	.wizard-steps {
		padding: 15px 10px;
	}

	.step-title {
		font-size: 0.8rem;
	}

	.feature-grid {
		grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
	}

	.wizard-content {
		padding: 20px 15px;
	}
}

@media (max-width: 480px) {
	.wizard-header h1 {
		font-size: 1.8rem;
	}

	.step:not(:last-child):after {
		display: none;
	}

	.feature-grid {
		grid-template-columns: 1fr 1fr;
	}

	.form-grid {
		grid-template-columns: 1fr;
	}

	.btn {
		padding: 10px 15px;
		font-size: 0.9rem;
	}
	/* Error Styles */
	.error {
		border-color: #ff4444 !important;
		background-color: #ffebee;
	}

	.error-message {
		color: #ff4444;
		font-size: 0.8rem;
		margin-top: 5px;
		animation: fadeIn 0.3s ease-out;
	}

	/* Additional Animations */
	@keyframes shake {
		0%, 100% {
			transform: translateX(0);
		}

		10%, 30%, 50%, 70%, 90% {
			transform: translateX(-5px);
		}

		20%, 40%, 60%, 80% {
			transform: translateX(5px);
		}
	}

	.shake {
		animation: shake 0.5s ease-in-out;
	}

/* waiting screen*/
	
	
}
