﻿:root {
	--primary-gradient: linear-gradient(135deg, #0A1F44 0%, #051026 100%);
	--secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
	--success-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	background: linear-gradient(135deg, #0A1F44 0%, #051026 100%);
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	overflow-x: hidden;
}

.onboarding-container {
	max-width: 650px;
	width: 100%;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border-radius: 24px;
	padding: 50px 40px;
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
	position: relative;
}

.progress-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 40px;
	position: relative;
}

.progress-step {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: #e0e0e0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	color: #999;
	position: relative;
	z-index: 2;
	transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

	.progress-step.active {
		background: var(--primary-gradient);
		color: white;
		transform: scale(1.15);
		box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
	}

	.progress-step.completed {
		background: var(--success-gradient);
		color: white;
	}

.progress-line {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 4px;
	background: #e0e0e0;
	transform: translateY(-50%);
	z-index: 1;
}

.progress-line-fill {
	height: 100%;
	background: var(--primary-gradient);
	width: 0%;
	transition: width 0.6s ease;
}

.step-title {
	font-size: 28px;
	font-weight: 800;
	margin-bottom: 10px;
	background: var(--primary-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.step-subtitle {
	color: #666;
	margin-bottom: 35px;
	font-size: 15px;
}

.form-step {
	display: none;
}

	.form-step.active {
		display: block;
	}

.form-label {
	font-weight: 600;
	color: #333;
	margin-bottom: 8px;
	font-size: 14px;
}

.form-control, .form-select {
	border: 2px solid #e0e0e0;
	border-radius: 12px;
	padding: 14px 18px;
	font-size: 15px;
	transition: all 0.3s ease;
	background: white;
}

	.form-control:focus, .form-select:focus {
		border-color: #667eea;
		box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
		outline: none;
	}

.form-check-input {
	width: 22px;
	height: 22px;
	border: 2px solid #e0e0e0;
	border-radius: 6px;
	margin-right: 10px;
	cursor: pointer;
}

	.form-check-input:checked {
		background: var(--primary-gradient);
		border-color: #667eea;
	}

.form-check-label {
	font-size: 15px;
	color: #555;
	cursor: pointer;
}

.btn-container {
	display: flex;
	gap: 15px;
	margin-top: 40px;
}

.btn-custom {
	flex: 1;
	padding: 15px 30px;
	border-radius: 12px;
	font-weight: 700;
	font-size: 16px;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.btn-prev {
	background: #f5f5f5;
	color: #666;
}

	.btn-prev:hover {
		background: #e0e0e0;
		transform: translateY(-2px);
	}

.btn-next {
	background: var(--primary-gradient);
	color: white;
	box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

	.btn-next:hover {
		transform: translateY(-2px);
		box-shadow: 0 12px 28px rgba(102, 126, 234, 0.4);
	}

.slide-in-right {
	animation: slideInRight 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.slide-in-left {
	animation: slideInLeft 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(100px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-100px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.floating-shapes {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	pointer-events: none;
	z-index: -1;
}

.shape {
	position: absolute;
	opacity: 0.1;
	animation: float 20s infinite ease-in-out;
}

	.shape:nth-child(1) {
		width: 80px;
		height: 80px;
		background: white;
		border-radius: 50%;
		top: 10%;
		left: 10%;
		animation-delay: 0s;
	}

	.shape:nth-child(2) {
		width: 60px;
		height: 60px;
		background: white;
		border-radius: 12px;
		top: 60%;
		right: 10%;
		animation-delay: 2s;
	}

	.shape:nth-child(3) {
		width: 100px;
		height: 100px;
		background: white;
		border-radius: 50%;
		bottom: 10%;
		left: 15%;
		animation-delay: 4s;
	}

@keyframes float {
	0%, 100% {
		transform: translateY(0) rotate(0deg);
	}

	33% {
		transform: translateY(-30px) rotate(120deg);
	}

	66% {
		transform: translateY(30px) rotate(240deg);
	}
}

.success-icon {
	width: 120px;
	height: 120px;
	margin: 0 auto 30px;
	background: var(--success-gradient);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 60px;
	color: white;
	animation: scaleIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes scaleIn {
	from {
		transform: scale(0);
	}

	to {
		transform: scale(1);
	}
}

.mb-3 {
	margin-bottom: 24px !important;
}
