body {
	font-family: Arial, sans-serif;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	margin: 0;
	background-color: #7ed96c;
	color: #333;
}

.container {
	background-color: #fff;
	padding: 0 0 40px;
	text-align: center;
	max-width: 500px;
	width: 100%;
	overflow: hidden;
}

.logoContainer {
	width: 100%;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-bottom: 40px;
	background-color: #7ed96c;
}

.logoContainer img {
	max-width: 100%;
	object-fit: cover;
	display: block;
}

.container img:not(.logoContainer img) {
	max-width: 100%;
	height: auto;
	margin-bottom: 20px;
}

h1 {
	margin-bottom: 20px;
	font-size: 2em;
	padding: 0 20px;
}

p {
	margin-bottom: 30px;
	line-height: 1.6;
	padding: 0 20px;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 15px;
	align-items: center;
	padding: 0 20px;
}

input[type="email"] {
	padding: 12px 15px;
	border: 1px solid #ddd;
	width: 80%;
	max-width: 300px;
	font-size: 1em;
}

input[type="email"]::placeholder {
	color: #aaa;
}

button {
	background-color: #000000;
	color: #ffffff;
	padding: 16px 24px;
	border: none;
	cursor: pointer;
	font-size: 1.2em;
	font-weight: bold;
	transition: background-color 0.3s ease;
}

button:hover {
	background-color: #246967;
}

/* Mobile Responsiveness */
@media (max-width: 500px) {
	body {
		align-items: flex-start;
		min-height: auto;
		padding: 20px;
	}

	.container {
		padding-bottom: 30px;
	}

	.logoContainer {
		padding-bottom: 20px;
	}

	h1 {
		font-size: 1.7em;
		padding: 0 15px;
	}

	p {
		font-size: 0.95em;
		padding: 0 15px;
	}

	.form-group {
		padding: 0 15px;
	}

	input[type="email"] {
		width: 90%;
		max-width: none;
		padding: 10px 12px;
	}

	button {
		font-size: 1em;
		padding: 10px 20px;
	}
}

/* New styles for messages */
.error-message {
	color: red;
	font-size: 0.9em;
	margin-top: 5px;
	margin-bottom: 0;
	text-align: center; /* Ensure error message is centered with other content */
	width: 100%; /* Ensure it spans the width if form group has padding */
	max-width: 300px; /* Match input max-width for better alignment */
}

.success-message {
	color: #28a745; /* Green color for success */
	font-size: 1.2em;
	font-weight: bold;
	margin-top: 20px;
	text-align: center; /* Ensure success message is centered */
	padding: 0 20px; /* Add padding to prevent text from touching container edges */
}
