body {
	background-image: url('assets/media/auth/bg10.jpeg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

/* LEFT SECTION */
.left-section {
	background-image: linear-gradient(63.1deg, rgba(5, 23, 111, 1) 16.4%, rgba(24, 95, 240, 1) 64.5%);
	color: #fff;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

/* BUTTON STYLING */
.btn-orange {
	background: linear-gradient(63.1deg, rgba(5, 23, 111, 1) 16.4%, rgba(24, 95, 240, 1) 64.5%);
	border: none;
	color: #fff;
	font-weight: 600;
	transition: all 0.3s ease;
}

.btn-orange:hover {
	filter: brightness(1.05);
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(24, 95, 240, 0.35);
}

/* TEXT & LINK COLORS */
.text-orange,
.link-orange {
	color: rgba(24, 95, 240, 1) !important;
}

.link-orange:hover {
	color: rgba(5, 23, 111, 1) !important;
}

/* NAVIGATION */
.nav-wrapper {
	background: transparent;
	z-index: 2;
}

.nav-wrapper .nav-link {
	color: rgba(255, 255, 255, 0.8);
	font-weight: 600;
}

.nav-wrapper .nav-link.active,
.nav-wrapper .nav-link:hover {
	color: #fff;
	border-bottom: 2px solid #fff;
}

.left-section .nav-link {
	color: rgba(255, 255, 255, 0.8);
}

.left-section .nav-link.active,
.left-section .nav-link:hover {
	color: #fff;
	border-bottom: 2px solid #fff;
}

/* TEXT COLOR FOR SLIDER */
.left-section .carousel-item p,
.left-section .carousel-item h4,
.left-section .carousel-item h3,
.left-section .carousel-item li {
	color: #eaf0ff;
}

/* CARD STYLE */
.card {
	box-shadow: 0 4px 20px rgba(24, 95, 240, 0.2);
	border: none;
}

/* CAROUSEL ICONS */
.carousel-control-prev-icon,
.carousel-control-next-icon {
	background-color: rgba(255, 255, 255, 0.6);
	border-radius: 50%;
}

.carousel-indicators button {
	background-color: rgba(255, 255, 255, 0.6);
}

.carousel-indicators .active {
	background-color: #fff;
}

.carousel-inner {
	min-height: 260px;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

/* RESPONSIVE */
@media (max-width: 768px) {
	.d-flex.flex-column.flex-lg-row {
		flex-direction: column !important;
	}

	.nav-wrapper {
		padding: 1rem 0.5rem;
	}

	.carousel-inner {
		min-height: 200px;
	}

	input:focus,
	.form-control:focus {
		border-color: rgba(24, 95, 240, 1);
		box-shadow: 0 0 0 0.2rem rgba(24, 95, 240, 0.25);
	}

	.toggle-password:hover {
		color: rgba(24, 95, 240, 1);
		transition: color 0.2s ease;
	}

	.scroll-down-btn {
		position: absolute;
		bottom: 60px;
		left: 50%;
		transform: translateX(-50%);
		background: linear-gradient(63.1deg, rgba(5, 23, 111, 1) 16.4%, rgba(24, 95, 240, 1) 64.5%);
		color: #fff;
		border-radius: 30px;
		padding: 10px 18px;
		display: flex;
		align-items: center;
		gap: 8px;
		font-size: 1rem;
		font-weight: 600;
		cursor: pointer;
		box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
		animation: bounce 1.5s infinite;
		z-index: 10;
		transition: all 0.3s ease;
	}

	.scroll-down-btn:hover {
		transform: translateX(-50%) scale(1.05);
		box-shadow: 0 8px 20px rgba(24, 95, 240, 0.3);
	}

	.scroll-down-btn .icon {
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.scroll-down-btn .label {
		font-size: 0.95rem;
		letter-spacing: 0.5px;
	}

	@keyframes bounce {

		0%,
		20%,
		50%,
		80%,
		100% {
			transform: translateX(-50%) translateY(0);
		}

		40% {
			transform: translateX(-50%) translateY(-10px);
		}

		60% {
			transform: translateX(-50%) translateY(-5px);
		}
	}
}