.btn-open-popup {
	padding: 12px 24px;
	font-size: 18px;
	background-color: green;
	color: #fff;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.btn-open-popup:hover {
	background-color: #4caf50;
}

.h2{
	padding: 20px;
}

.imgfluid{
	padding: 0px 0px 0px 70px;
}


.overlay-container {
	position: fixed;
	top: 5px;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: 9999;
	display: none;
	justify-content: center;
	align-items: center;
	overflow-y: auto;
}

.overlay-container.show {
	display: flex;
}

.popup-box {
	background-color: white;
	padding: 20px;
	border-radius: 10px;
	width: 90%;
	max-width: 700px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
	position: relative;
	/* margin: 20px; */
}

.btn-close-popup {
	margin-top: 15px;
	width: 100%;
}

.form-container {
	display: flex;
	flex-direction: column;
}

.form-label {
	margin-bottom: 10px;
	font-size: 16px;
	color: #444;
	text-align: left;
}

.form-input {
	padding: 10px;
	margin-bottom: 20px;
	border: 1px solid #ccc;
	border-radius: 8px;
	font-size: 16px;
	width: 100%;
	box-sizing: border-box;
}

.btn-submit,
.btn-close-popup {
	padding: 0px 24px;
	border: none;
	/* border-radius: 8px; */
	cursor: pointer;
	transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-submit {
	background-color: green;
	color: #fff;
}

.btn-close-popup {
	margin-top: 12px;
	background-color: #e74c3c;
	color: #fff;
}

.btn-submit:hover,
.btn-close-popup:hover {
	background-color: #4caf50;
}

/* Keyframes for fadeInUp animation */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Animation for popup */
.overlay-container.show {
	display: flex;
	opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
	.popup-box {
		/* padding: 20px; */
		width: 100%;
	}
}