body {
	font-family: "Sulphur Point", sans-serif;
	font-weight: 400;
	text-align: justify;
	background-color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	min-height: 100vh;
}

.container {
	width: 100%;
	max-width: 400px;
}

.mandatory-text {
	color: red;
	font-weight: bold;
}

#message-container {
	width: 100%;
	max-width: 400px;
}

.page-header {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	position: fixed;
	z-index: 99;
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
	box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.1);
	background-color: #fff;
}

.logo-container {
	width: 100%;
	display: flex;
	justify-content: center;
	padding: 10px;
}

.title-container {
	width: 100%;
	margin-bottom: 20px;
	text-align: center;
}

.page-title {
	font-family: "Sulphur Point", sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 2rem;
	line-height: 1;
	color: #42367d;
	text-align: center;
	margin-top: 0.7em;
	margin-bottom: 0.25em;
}

.form-card {
	background-color: #fff;
	border-radius: 16px;
	border: 1px solid #000000;
	padding: 30px;
	margin-top: 150px;
}

.form-group {
	margin-bottom: 1.5rem;
}

label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select {
	width: 100%;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 5px;
	font-size: 16px;
}

.checkbox-group {
	display: flex;
	flex-direction: column;
}

.checkbox-group label {
	font-weight: normal;
}

.submit-btn {
	display: block;
	width: 100%;
	background-color: #ffd900;
	color: black;
	text-align: center;
	padding: 15px;
	border-radius: 10px;
	text-decoration: none;
	border: 1px solid #000000;
	transition:
		transform 0.2s,
		box-shadow 0.2s;
	cursor: pointer;
	font-family: "Sulphur Point", sans-serif;
	font-size: 1.2rem;
	font-weight: 700;
}

.submit-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}
