html {
	background: url("") no-repeat center center fixed;
	-webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
	background-size: cover;
	background-position: center top;
	background-color: #57A657;
	height: 100%;
}
body {
	font-family: century-gothic, sans-serif;
	font-variant: normal;
	margin:0;
	width: 100%;
	height: 100vh;
	}
div{
	box-sizing:border-box;
}
.header{
	font-family: century-gothic, sans-serif;
	width: 100%;
	height: 170px;
	text-align: center;
	background-color: #fff;
	padding: 0 30px;
	box-shadow: 0px 2px 5px #2F2D2E70;
}
.row{
	max-width: 980px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	height: 100%;
}
h1{
	font-family: century-gothic, sans-serif;
	font-weight: 700;
	color: #030303;
	font-size: 50px; /* Approximation due to font substitution */
	text-align: left;
	line-height: 1.75em;
}
.wrap{
	display: block;
	position: relative;
	align-self: center;
	/* width: 100%; */
}
.image{
	display: block;
	max-width: 594px;
	margin: 0 auto;
}
.green{
	color: #57A657;
}
.col-a{
	width: 60%;
	float:left;
}
.col-b{
	width: 40%;
	float:left;
}
.footer{
	width: 100%;
	height: 6em;
	background-color: #2F2D2E;
	color: #fff;
	position: absolute;
	bottom: 0;
	padding: 2.5em;
	font-size: 10px;
}
.form{
	box-shadow: 0px 4px 9px #00000070;
    display: inline;
    }
#submit{
  background-color: #57A657; /* Green */
  border: none;
  color: white;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 13px;
  line-height: 0;
  border: 2px solid #57A657;
  height: 25px;
  width: 25px;
}
#login{
	width: 60%;
	border: 2px outset #2F2D2E;
	height: 25px;
	margin-right: -4px;
}

@media screen and (max-width: 768px) {

.row{
	display:block;
	}

.col-a{
	width: 100%;
	float:none;
}
.col-b{
	width: 100%;
	float:none;
}

h1{
	text-align:center;
}

.footer{
	text-align:center;
}
	
}