.popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 9999;
	display: none;
}

.popup-container {
	position: relative;
	background-color: #fff;
	margin: auto;
	padding: 20px;
	width: 50%;
	top: 20%;
	box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.5);
}

.popup h2 {
	margin-top: 0;
	text-align: center;
}

.popup input[type="text"],
.popup input[type="email"],
.popup textarea {
	width: 100%;
	padding: 12px;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
	margin-top: 6px;
	margin-bottom: 16px;
	resize: vertical;
}

.popup textarea {
	height: 120px;
}

.popup button[type="submit"] {
	background-color: #42b3b3;
	/* font-family: Georgia; */
	font-size: 20px;
	color: white;
	padding: 12px 50px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	display: block; /* Ensures button is full width */
  	margin: 0 auto; /* Centers button horizontally */
  	text-align: center; /* Centers text within button */

}

.popup button[type="submit"]:hover {
	opacity: 80%;
}

.popup button[type="submit"]:active {
	opacity: 60%;
}

.popup .close {
	position: absolute;
	top: 10px;
	right: 10px;
	color: #aaaaaa;
	font-size: 28px;
	font-weight: bold;
}

.popup .close:hover,
.popup .close:focus {
	color: #000;
	text-decoration: none;
	cursor: pointer;
}

@media (max-width: 1028px) {
	.popup-container {
		width: 85%;
		top: 15%;
	}
}