* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Poppins", sans-serif;
}

body {
	background: linear-gradient(135deg, #002147, #003c8f);
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 40px;
	padding-bottom: 40px;
}

.container {
	width: 100%;
	max-width: 900px;
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(20px);
	border-radius: 25px;
	padding: 40px;
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
	animation: fadeUp 1s ease;
}

h2 {
	text-align: center;
	color: #002147;
	margin-bottom: 10px;
}

.subtitle {
	text-align: center;
	margin-bottom: 30px;
	font-size: 14px;
	color: #555;
}

/* Section Title */
.section-title {
	margin-top: 25px;
	margin-bottom: 15px;
	font-weight: 600;
	color: #003c8f;
	border-left: 5px solid #ffcc00;
	padding-left: 10px;
}

.row {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.col {
	flex: 1;
	min-width: 250px;
}

.input-group {
	margin-bottom: 18px;
}

.input-group label {
	font-size: 13px;
	margin-bottom: 5px;
	display: block;
	color: #333;
}

.input-group input,
.input-group select {
	width: 100%;
	padding: 12px;
	border: 1px solid #ddd;
	outline: none;
	transition: 0.3s;
}

.input-group input:focus,
.input-group select:focus {
	border-color: #ffcc00;
	box-shadow: 0 0 0 4px rgba(255, 204, 0, 0.2);
}

.password-wrapper {
	position: relative;
}

.password-wrapper input {
	width: 100%;
	border: 1px solid #ddd;
	height: 48px; /* samakan tinggi */
}

.toggle-password {
	position: absolute;
	right: 28px; /* nempel kanan */
	top: 65%;
	transform: translateY(-50%);
	cursor: pointer;
	color: #777;
	font-size: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.toggle-password:hover {
	color: #002147;
}

/* Button */
.submit-btn {
	width: 100%;
	margin-top: 20px;
	padding: 14px;
	border: none;
	border-radius: 14px;
	background: linear-gradient(135deg, #ffcc00, #ffd633);
	color: #002147;
	font-weight: 600;
	font-size: 15px;
	cursor: pointer;
	transition: 0.3s;
	box-shadow: 0 10px 25px rgba(255, 204, 0, 0.4);
}

.submit-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 20px 30px rgba(255, 204, 0, 0.6);
}

/* Animation */
@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 768px) {
	.container {
		padding: 25px;
	}
}

.card-body {
	border: 1px solid #f0eeee;
	border-radius: 6px;
}
.captcha-box {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 10px;
	margin-bottom: 10px;
}

#captchaCanvas {
	background: linear-gradient(135deg, #667eea, #764ba2);
	border-radius: 12px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.refreshCaptcha {
	background: #ff8800;
	border: none;
	color: white;
	padding: 8px 12px;
	border-radius: 10px;
	transition: 0.3s;
}

.refreshCaptcha:hover {
	background: #ff6600;
	transform: rotate(90deg);
}

.timeline-section {
	background: #f8f9fa;
}

.timeline {
	display: flex;
	justify-content: space-between;
	position: relative;
	flex-wrap: wrap;
}

.timeline::before {
	content: "";
	position: absolute;
	top: 20px;
	left: 0;
	width: 100%;
	height: 4px;
	background: #dcdcdc;
	z-index: 0;
}

.timeline-step {
	text-align: center;
	position: relative;
	width: 18%;
	z-index: 2;
}

.timeline-step .circle {
	width: 45px;
	height: 45px;
	background: linear-gradient(135deg, #a09d9d, #b5b0b0);
	color: #fff;
	border-radius: 50%;
	line-height: 45px;
	font-weight: bold;
	margin: 0 auto 15px;
	font-size: 18px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.timeline-step h6 {
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 5px;
}

.timeline-step p {
	font-size: 12px;
	color: #666;
}

.timeline-step.active .circle {
	background: linear-gradient(135deg, #07774f, #1ea374);
	transform: scale(1.1);
}

.timeline-step.active h6 {
	color: #326754;
}
.timeline {
	position: relative;
}

.timeline::after {
	content: "";
	position: absolute;
	top: 20px;
	left: 0;
	height: 4px;
	background: #0f9969;
	z-index: 1;
	width: var(--progress-width, 0%);
	transition: width 0.4s ease;
}

@media (max-width: 768px) {
	.timeline {
		flex-direction: column;
		align-items: center;
		padding-left: 30px;
	}

	/* Garis abu-abu jadi vertical */
	.timeline::before {
		width: 4px;
		height: 100%;
		left: 25px;
		top: 0;
	}

	/* Progress aktif jadi vertical */
	.timeline::after {
		width: 4px;
		height: var(--progress-width, 0%);
		left: 20px;
		top: 0;
		left: 25px;
		top: 0;
	}

	.timeline-step {
		width: 100%;
		text-align: left;
		padding-left: 40px;
		margin-bottom: 10px;
	}

	.timeline-step .circle {
		position: absolute;
		left: 0;
		top: 0;
		margin: 0;
		width: 40px;
		height: 40px;
		display: flex; /* penting */
		align-items: center; /* vertical center */
		justify-content: center; /* horizontal center */
	}

	.timeline-step h6,
	.timeline-step p {
		margin-left: 20px;
	}
}

.info-modern {
	display: flex;
	align-items: center;
	gap: 15px;
	background: linear-gradient(135deg, #ffe5e5, #ffd1cc);
	border-left: 5px solid #e75b10;
	padding: 15px 20px;
	border-radius: 10px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	animation: fadeIn 0.5s ease-in-out;
}

.info-icon {
	font-size: 22px;
	color: #ea1717;
}

.info-text {
	font-size: 14px;
	color: #444;
	line-height: 1.6;
}

.info-text strong {
	color: #e65100;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
