.email_list {
	margin: 150px 0;
	display: flex;
	justify-content: center;
	flex-direction: column;
	gap: 10px;
	background-color: #039cdf;
	padding: 20px;
}
.email_list h2 {
	margin: auto;
	font-size: 3rem;
	color: #fff;
}
@media only screen and (max-width: 800px) {
	.email_list h2 {
		font-size: 2rem;
	}
}
@media only screen and (max-width: 550px) {
	.email_list h2 {
		font-size: 1.5rem;
	}
}
.email_list_form {
  max-width: 320px;
  display: flex;
  flex-direction: row;
	margin: auto;
}
.email_list_form input,
.email_list_form button {
  padding: 12px;
	border: none;
}
.email_list_form input:focus {
	border: none;
	outline: none;
	background-color: #eee;
}
@media only screen and (max-width: 300px) {
	.email_list_form input {
		width: 50vw;
	}
}
.email_list_form button {
	background-color: #25D366;
	color: #fff;
	font-weight: bold;
  border: none;
  cursor: pointer;
}
.email_list_form button:hover {
  background: #21BD5B;
}
