:root {
	--primary-color: #4e73df;
	--secondary-color: #f8f9fc;
	--accent-color: #2e59d9;
	--text-color: #5a5c69;
}

body {
    color: var(--text-color);
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-image: url('https://biharmarathon.com/images/about-us.png');
    background-size: cover;
    background-repeat: no-repeat;
}

.registration-container {
	max-width: 1000px;
	margin: 30px auto;
	background: white;
	border-radius: 15px;
	box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
	overflow: hidden;
}

.form-header {
color: white;
padding: 20px;
text-align: center;
background-image:url(https://biharmarathon.com/images/runner1.gif),linear-gradient(45deg, #0f4245, #d4f96c94);
background-size: contain, cover;
background-repeat: no-repeat, no-repeat;
background-position: left;
}

.form-header h2 {
	font-weight: 700;
	margin: 0;
}

.form-progress {
	display: flex;
	justify-content: space-between;
	padding: 20px 40px;
	background: var(--secondary-color);
}

.step {
	text-align: center;
	position: relative;
	flex: 1;
}

.step:not(:last-child):after {
	content: '';
	position: absolute;
	top: 20px;
	left: 50%;
	width: 100%;
	height: 3px;
	background: #d1d3e2;
	z-index: 1;
}

.step.active:not(:last-child):after {
	background: var(--primary-color);
}

.step-circle {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #d1d3e2;
	color: #6c757d;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 10px;
	position: relative;
	z-index: 2;
	font-weight: bold;
}

.step.active .step-circle {
	background: var(--primary-color);
	color: white;
}

.step.completed .step-circle {
	background: #1cc88a;
	color: white;
}

.step.completed .step-circle:before {
	content: '\f00c';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
}

.step-label {
	font-size: 14px;
	color: #6c757d;
}

.step.active .step-label,
.step.completed .step-label {
	color: var(--primary-color);
	font-weight: 600;
}

.form-body {
	padding: 30px;
}

.form-step {
	display: none;
}

.form-step.active {
	display: block;
	animation: fadeIn 0.5s;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.form-navigation {
	display: flex;
	justify-content: space-between;
	padding: 20px 30px;
	border-top: 1px solid #e3e6f0;
}

.btn-next,
.btn-submit {
	background: var(--primary-color);
	color: white;
	border: none;
	padding: 10px 25px;
	border-radius: 5px;
	font-weight: 600;
}

.btn-next:hover,
.btn-submit:hover {
	background: var(--accent-color);
	color: white;
}

.btn-prev {
	background: #e3e6f0;
	color: var(--text-color);
	border: none;
	padding: 10px 25px;
	border-radius: 5px;
	font-weight: 600;
}

.btn-prev:hover {
	background: #d1d3e2;
}

.form-control:focus,
.form-select:focus {
	border-color: var(--primary-color);
	box-shadow: 0 0 0 0.25rem rgba(78, 115, 223, 0.25);
}

.file-upload-container {
	border: 2px dashed #d1d3e2;
	border-radius: 10px;
	padding: 20px;
	text-align: center;
	margin-bottom: 15px;
	cursor: pointer;
	transition: all 0.3s;
}

.file-upload-container:hover {
	border-color: var(--primary-color);
	background: rgba(78, 115, 223, 0.05);
}

.file-upload-container i {
	font-size: 40px;
	color: var(--primary-color);
	margin-bottom: 10px;
}

.file-upload-container input[type="file"] {
	display: none;
}

.file-name {
	margin-top: 10px;
	font-size: 14px;
	color: #6c757d;
}

.payment-option {
	border: 1px solid #e3e6f0;
	border-radius: 8px;
	padding: 15px;
	margin-bottom: 15px;
	cursor: pointer;
	transition: all 0.3s;
}

.payment-option:hover {
	border-color: var(--primary-color);
	background: rgba(78, 115, 223, 0.05);
}

.payment-option.selected {
	border-color: var(--primary-color);
	background: rgba(78, 115, 223, 0.1);
}

.payment-option i {
	font-size: 30px;
	margin-right: 15px;
	color: var(--primary-color);
}

.summary-item {
	display: flex;
	justify-content: space-between;
	padding: 10px 0;
	border-bottom: 1px solid #e3e6f0;
}

.summary-item:last-child {
	border-bottom: none;
}

.summary-label {
	font-weight: 600;
}


@media only screen and (max-width: 600px) {
	.registration-container {
		margin: 10px !important;
	}
}