main {
	width: 100%;
	height: calc(100vh - 70px);
	background-color: #1A253A;
	margin-top: 70px;
	background-image: url(../images/hero.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	/*background-attachment: fixed;*/
	display: flex;
	justify-content: center;
	align-items: center;
}

input[type=text], input[type=number], input[type=password], select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}

input[type=submit] {
  background-color: #4CAF50;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

input[type=submit]:hover {
  background-color: #45a049;
}

.submit-button {
  background-color: #4CAF50;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.container {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
  flex: 1; /* fab */
  max-width: 600px;
  margin: 20px;
}

.banner {
		background: #009579;
		margin-bottom: 20px;
	}
	
	.banner__error {
		background: #FF4D4D;
	}
	
	.banner__content {
		padding: 16px;
		max_width: 500px;
		margin: 0 auto;
		display: flex;
		align-items: center;
	}
	
	.banner__text {
		flex-grow: 1;
		line-height: 1.4;
		font-family: 'Quicksand', sans-serif;
	}
	
	.banner__close {
		background: none;
		border: none;
		cursor: pointer;
	}
	
	.banner__link {
		text-decoration-style: dotted;
	}
	
	.banner__link,
	.banner__text,
	.banner__close>span {
		color:#ffffff;
	}
	
	.banner__highlight {
		width: 800px;
		background: #000000;
	}
	
	.banner__highlight__content {
		padding: 5px;
		/*max_width: 500px;*/
		margin: 0 auto;
		display: flex;
		align-items: center;
	}
	
	.banner__highlight__text {
		flex-grow: 1;
		line-height: 1.4;
		font-size: 32px;
		font-family: 'Quicksand', sans-serif;
	}
	
	.banner__highlight__close {
		background: none;
		border: none;
		cursor: pointer;
	}
	
	.banner__highlight__text,
	.banner__highlight__close>span {
		color:#ffffff;
	}
