﻿
body {
	font-family: 'Poppins', sans-serif;
	background-color: #f4f7fc;
}

/*.navbar {
	background-color: #343a40;
}

.navbar-brand {
	color: #ffffff !important;
}*/
/* Navbar */
nav {
	background-color: #2c3e50;
	padding: 1rem;
	position: relative;
}

.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	width: 100%;
}

	.navbar .logo img {
		height: 40px;
	}

nav ul {
	list-style: none;
	display: flex;
	margin: 0;
	padding: 0;
}

	nav ul li {
		margin: 0 15px;
	}

		nav ul li a {
			color: white;
			text-decoration: none;
			font-size: 16px;
		}

/* Hamburger Menu */
.menu-icon {
	display: none;
	font-size: 30px;
	color: white;
	cursor: pointer;
	position: absolute;
	right: 10px;
	top: 10px;
}
.container {
	max-width: 1000px;
	margin-top: 30px;
}

.form-container {
	background-color: #ffffff;
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-control {
	border-radius: 5px;
}

.btn-submit {
	background-color: #2c3e50 /*#4CAF50*/;
	color: white;
	border-radius: 5px;
	font-weight: 600;
}

.preview-container {
	max-width: 300px;
	margin-top: 20px;
	text-align: center;
	display: none;
}

	.preview-container img {
		max-width: 100%;
		border-radius: 8px;
	}

/* Responsive Styles */
@media (max-width: 768px) {
	.d-flex {
		flex-direction: column;
	}

	.preview-container {
		margin-top: 20px;
	}
}


