.newsletter-container {
	max-width: 500px;
	margin: 2rem auto;
	padding: 2rem;
	text-align: center;
	background: linear-gradient(to bottom right, #ffffff, #f5f5f5);
	border-radius: 12px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.newsletter-title {
	color: #333;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	margin-bottom: 1.5rem;
	font-size: 1.5rem;
}

.newsletter-form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	align-items: center;
}

.newsletter-input {
	width: 100%;
	max-width: 300px;
	padding: 0.8rem 1rem;
	border: 2px solid #e0e0e0;
	border-radius: 6px;
	font-size: 1rem;
	transition: border-color 0.3s ease;
}

.newsletter-input:focus {
	outline: none;
	border-color: #4a90e2;
	box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.newsletter-button {
	background-color: #000000;
	color: white;
	border: none;
	padding: 0.8rem 2rem;
	border-radius: 6px;
	font-size: 1rem;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.newsletter-button:hover {
	background-color: #357abd;
}

.newsletter-message {
	margin-top: 1rem;
	padding: 0.8rem;
	border-radius: 6px;
	display: none;
}

.newsletter-message.success {
	background-color: #e8f5e9;
	color: #2e7d32;
	border: 1px solid #a5d6a7;
}

.newsletter-message.error {
	background-color: #ffebee;
	color: #c62828;
	border: 1px solid #ffcdd2;
}

@media (max-width: 480px) {
	.newsletter-container {
		padding: 1.5rem;
		margin: 1rem;
	}

	.newsletter-input,
	.newsletter-button {
		width: 100%;
	}
}