.email_list {
	max-width: 1000px;
	margin: auto;
	display: flex;
	justify-content: center;
	flex-direction: column;
	gap: 40px;
	padding: 20px;
  box-sizing: border-box;
}
.email_list h2 {
	margin: auto;
	font-size: 3rem;
	color: #fff;
}
.email_list .email_list_wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	justify-content: space-around;
}
.email_list .email_list_wrapper > p {
	font-size: 1.5rem;
	color: #fff;
	max-width: 350px;
	text-align: center;
}
.email_list .email_list_wrapper .wrapper {
	display: flex;
	flex-direction: column;
	justify-content: center;
	max-width: 320px;
}
.email_list .email_list_wrapper .wrapper > p {
	font-size: 0.75rem;
	color: #fff;
	margin: 15px 10px 0;
}
.email_list .email_list_wrapper .wrapper a {
	text-decoration: underline;
}
.email_list_form {
  display: flex;
}
.email_list_form input {
	width: 100%;
}
.email_list_form input,
.email_list_form button {
  padding: 12px;
	border: none;
}
.email_list_form input:focus {
	border: none;
	outline: none;
	background-color: #eee;
}
.email_list_form button {
	background-color: #25D366;
	color: #fff;
	font-weight: bold;
  border: none;
  cursor: pointer;
	transition: background-color 0.15s ease;
}
.email_list_form button:hover {
  background: #21BD5B;
}
