@charset "ISO-8859-1";

/* * { */
/* 	margin: 0; */
/* 	padding: 0; */
/* 	box-sizing: border-box; */
/* 	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
/* } */
body {
	
	/* 	background: linear-gradient(135deg, #f5f7fa, #e4e8f0); */
	/* 	color: #333; */
	/* 	min-height: 100vh; */
	/* 	padding: 20px; */
	/* 	display: flex; */
	/* 	justify-content: center; */
	/* 	align-items: center; */
	color: #e0e0e0;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	padding: 20px 0;
}

.form-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	flex: 1;
	padding: 20px;
}

.registration-container {
	max-width: 1200px;
	width: 100%;
	background: white;
	border-radius: 15px;
	box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
	overflow: hidden;
	animation: fadeIn 0.8s ease-out;
	margin-top: 60px;
}
 @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-30px); }
            to { opacity: 1; transform: translateY(0); }
        }
.registration-header {
	background: linear-gradient(to right, #e0f7ff, #b3e5fc);
	color: white;
	padding: 10px;
	text-align: center;
	position: relative;
}

/* .logo { */
/* 	display: flex; */
/* 	align-items: center; */
/* 	justify-content: center; */
/* 	gap: 15px; */
/* 	margin-bottom: 15px; */
/* } */

/* .logo i { */
/* 	font-size: 2.5rem; */
/* } */

/* .logo h1 { */
/* 	font-size: 2.2rem; */
/* 	font-weight: 700; */
/* } */

/* header p { */
/* 	max-width: 600px; */
/* 	margin: 0 auto; */
/* 	opacity: 0.9; */
/* 	line-height: 1.6; */
/* } */
.progress-container {
	background: #e6f0fc;
	/* 	margin-top: 80px; */
	padding-top: 10px;
	display: flex;
	justify-content: center;
	position: relative;
}



.progress-steps {
	display: flex;
	gap: 30px;
}

.step {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
}

.step:not(:last-child):after {
	content: "";
	position: absolute;
	top: 20px;
	left: 30px;
	width: 60px;
	height: 2px;
	background: #a0c0e0;
}

.step-circle {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #a0c0e0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	color: white;
	z-index: 2;
}

.step.active .step-circle {
	background: #0077cc;
}

.step-label {
	margin-top: 10px;
	font-size: 0.9rem;
	font-weight: 600;
	color: #666;
}

.step.active .step-label {
	color: #004a99;
}

.form-container {
	padding: 30px;
	background: white;
	/*     border-radius: 15px; */
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

.form-step {
	display: none;
}

.form-step.active {
	display: block;
	animation: fadeIn 0.5s ease;
}

@
keyframes fadeIn {from { opacity:0;
	transform: translateY(10px);
}

to {
	opacity: 1;
	transform: translateY(0);
}

}
.form-title {
	text-align: center;
	color: #004a99;
	margin-bottom: 30px;
	font-size: 1.8rem;
}

.form-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 20px;
	margin-bottom: 30px;
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	color: #004a99;
}

.form-group input, .form-group select, .form-group textarea {
	width: 100%;
	padding: 14px;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-size: 1rem;
	transition: all 0.3s;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus
	{
	outline: none;
	border-color: #0077cc;
	box-shadow: 0 0 0 3px rgba(0, 119, 204, 0.2);
}

.btn-container {
	display: flex;
	justify-content: space-between;
	margin-top: 30px;
}

.btn {
	padding: 14px 30px;
	border-radius: 8px;
	border: none;
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 10px;
	transition: all 0.3s;
}

.btn-prev {
	background: #e9ecef;
	color: #495057;
}

.btn-next {
	background: #0077cc;
	color: white;
}

.btn-submit {
	background: #28a745;
	color: white;
}

.btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-prev:hover {
	background: #dee2e6;
}

.btn-next:hover {
	background: #005fa3;
}

.btn-submit:hover {
	background: #218838;
}

/* Reference Section */
.reference-section {
	background: #f0f7ff;
	border-radius: 10px;
	padding: 25px;
	margin: 30px 0;
	border-left: 4px solid #0077cc;
}

.reference-title {
	color: #004a99;
	margin-bottom: 20px;
	text-align: center;
}

.reference-options {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 25px;
}

.reference-option {
	display: flex;
	align-items: center;
	gap: 8px;
}

.reference-option input {
	width: 18px;
	height: 18px;
}

.reference-input {
	max-width: 400px;
	margin: 0 auto;
}

/* Package Selection */
.packages {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 25px;
	margin: 30px 0;
}

.package {
	border: 2px solid #e6f0fc;
	border-radius: 10px;
	padding: 25px;
	text-align: center;
	transition: all 0.3s;
	cursor: pointer;
}

.package:hover {
	transform: translateY(-5px);
	border-color: #0077cc;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.package.selected {
	border-color: #0077cc;
	background: #f0f7ff;
}

.package h3 {
	color: #004a99;
	margin-bottom: 15px;
}

.package-price {
	font-size: 1.8rem;
	font-weight: 700;
	color: #0077cc;
	margin-bottom: 15px;
}

.package ul {
	list-style: none;
	text-align: left;
	margin-bottom: 20px;
}

.package li {
	padding: 8px 0;
	border-bottom: 1px solid #eee;
}

.package li:last-child {
	border-bottom: none;
}

.package li i {
	color: #28a745;
	margin-right: 10px;
}

/* Product Selection */
.products-container {
	margin: 30px 0;
}

.products-title {
	text-align: center;
	color: #004a99;
	margin-bottom: 20px;
}

.products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 20px;
}

.product {
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 20px;
	text-align: center;
	transition: all 0.3s;
	cursor: pointer;
}

.product:hover {
	border-color: #0077cc;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.product.selected {
	border-color: #0077cc;
	background: #f0f7ff;
}

.product i {
	font-size: 2.5rem;
	color: #0077cc;
	margin-bottom: 15px;
}

.product h4 {
	color: #004a99;
	margin-bottom: 10px;
}

.selection-info {
	text-align: center;
	margin: 20px 0;
	font-weight: 600;
	color: #004a99;
}

/* Upload Section */
.upload-container {
	text-align: center;
	margin: 40px 0;
}

.upload-area {
	border: 2px dashed #0077cc;
	border-radius: 10px;
	padding: 40px;
	margin: 30px auto;
	max-width: 500px;
	background: #f0f7ff;
	cursor: pointer;
	transition: all 0.3s;
}

.upload-area:hover {
	background: #e6f0fc;
}

.upload-icon {
	font-size: 3rem;
	color: #0077cc;
	margin-bottom: 20px;
}

.upload-text {
	margin-bottom: 20px;
}

.file-name {
	margin-top: 15px;
	font-weight: 600;
	color: #0077cc;
}

/* Payment Section */
.payment-container {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	margin: 40px 0;
	justify-content: center;
}

.bank-details, .qr-code {
	flex: 1;
	min-width: 300px;
	background: #f0f7ff;
	border-radius: 10px;
	padding: 30px;
}

.section-title {
	color: #004a99;
	margin-bottom: 20px;
	text-align: center;
}

.bank-info {
	margin-bottom: 20px;
}

.bank-info p {
	margin: 10px 0;
	display: flex;
}

.bank-info strong {
	min-width: 150px;
	display: inline-block;
}

.qr-placeholder {
	background: #e6f0fc;
	border-radius: 10px;
	height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 20px auto;
	max-width: 200px;
}

.qr-placeholder i {
	font-size: 4rem;
	color: #0077cc;
}

.note {
	text-align: center;
	font-style: italic;
	color: #666;
	margin-top: 20px;
}

/* Confirmation */
.confirmation {
	text-align: center;
	padding: 50px 20px;
}

.confirmation i {
	font-size: 5rem;
	color: #28a745;
	margin-bottom: 30px;
}

.confirmation h2 {
	color: #004a99;
	margin-bottom: 20px;
}

.confirmation p {
	max-width: 600px;
	margin: 0 auto 30px;
	line-height: 1.6;
}

@media ( max-width : 768px) {
	.progress-steps {
		gap: 15px;
	}
	.step:not(:last-child):after {
		width: 30px;
		left: 25px;
	}
	.form-grid {
		grid-template-columns: 1fr;
	}
	.btn-container {
		flex-direction: column;
		gap: 15px;
	}
	.btn {
		width: 100%;
		justify-content: center;
	}
	.reference-options {
		flex-direction: column;
		align-items: center;
	}
}