#submit {
	background-color: #0080f9;
	width: 100%;
	height: 2.7em;
	color: white;
	font-size: 1.3em;
	font-weight: bold;
	cursor: pointer !important;
	outline: none;
	border: none;
	border-radius: 10px;
	margin: 10px 0;
}

form {
	width: 26em;
	margin: 0 auto;
	border: 1px solid #0080f9;
	padding: 10px;
}

/*  POPUP STYLES */
.popup {
	display: none;
	position: fixed;
	/* Stay in place */
	z-index: 1;
	/* Sit on top */
	left: 0;
	top: 0;
	width: 100%;
	/* Full width */
	height: 100%;
	/* Full height */
	overflow: auto;
	/* Enable scroll if needed */
	background-color: rgb(0, 0, 0);
	/* Fallback color */
	background-color: #3a4152bf;
	/* Black w/ opacity */
	max-width: 100%;
}

/* popup Content */
.popup-content {
	background-color: #fefefe;
	margin: 8% auto;
	border-radius: 8px;
	height: 70%;
	width: 50%;
	position: relative;
	-webkit-box-shadow: 6px 6px 28px -4px rgba(0, 0, 0, 0.75);
	-moz-box-shadow: 6px 6px 28px -4px rgba(0, 0, 0, 0.75);
	box-shadow: 6px 6px 28px -4px rgba(0, 0, 0, 0.75);
}