*, *:before, *:after {
  box-sizing: border-box;
}

html {
  overflow-y: scroll;
}

body {
  background: url('../img/bg.jpg') center top no-repeat;
  background-size: 100% auto;
  font-family: 'Roboto Condensed', sans-serif;
}

a {
  text-decoration: none;
  color: #e99400;
  -webkit-transition: .5s ease;
  transition: .5s ease;
}
a:hover {
  color: #df5900;
}

.form {
  background: rgba(33,38,57,0.8);
  padding: 0px 40px 40px 40px;
  max-width: 600px;
  margin: 20px auto;
  border-radius: 4px;
  box-shadow: 0 4px 10px 4px rgba(0,0,0,0.3);
}

.logo { 
width:100%;
text-align:center;
}

.logo img {
margin-bottom: 20px;
}

.tab-group {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}
.tab-group:after {
  content: "";
  display: table;
  clear: both;
}
.tab-group li a {
  display: block;
  text-decoration: none;
  padding: 15px;
  background: rgba(160, 179, 176, 0.25);
  color: #a0b3b0;
  font-size: 20px;
  float: left;
  width: 50%;
  text-align: center;
  cursor: pointer;
  -webkit-transition: .5s ease;
  transition: .5s ease;
}
.tab-group li a:hover {
  background: #df5900;
  color: #ffffff;
}
.tab-group .active a {
  background: #e99400;
  color: #ffffff;
}

.tab-content > div:last-child {
  display: none;
}

h1 {
  text-align: center;
  color: #ffffff;
  font-weight: 300;
  margin: 0 0 40px;
}

label {
  position: absolute;
  -webkit-transform: translateY(6px);
          transform: translateY(6px);
  left: 13px;
  color: rgba(255, 255, 255, 0.5);
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  -webkit-backface-visibility: hidden;
  pointer-events: none;
  font-size: 22px;
}
label .req {
  margin: 2px;
  color: #e99400;
}

label.active {
  display: none;
}
label.active .req {
  display: none;
}

label.highlight {
  display: none;
}

input[type="email"], input[type="text"], input[type="password"], textarea {
  font-size: 22px;
  display: block;
  width: 100%;
  height: 100%;
  padding: 5px 10px;
  background: none;
  background-image: none;
  border: 1px solid #a0b3b0;
  color: #ffffff;
  border-radius: 0;
  -webkit-transition: border-color .25s ease, box-shadow .25s ease;
  transition: border-color .25s ease, box-shadow .25s ease;
}
input:focus, textarea:focus {
  outline: 0;
  border-color: #e99400;
}

textarea {
  border: 2px solid #a0b3b0;
  resize: vertical;
}

.field-wrap {
  position: relative;
  margin-bottom: 20px;
}

.top-row:after {
  content: "";
  display: table;
  clear: both;
}
.top-row > div {
  float: left;
  width: 48%;
  margin-right: 4%;
}
.top-row > div:last-child {
  margin: 0;
}

.checkbox-field-wrap {
font-size: 22px;
display: block;
width: 100%;
height: 100%;
padding: 5px 10px;
color: #ffffff;
}

.checkbox-field-wrap span {
display:inline-block;
padding-left:15px;
}

.checkbox-field-wrap input {
display:inline-block;
width:auto;
}

.button {
  border: 0;
  outline: none;
  border-radius: 0;
  padding: 10px 0;
  font-size: 2rem;
  font-weight: 600;
  background: #e99400;
  color: #ffffff;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-appearance: none;
  text-transform: uppercase;
}
.button:hover, .button:focus {
  background: #df5900;
}

.button-block {
	margin-top:20px;
  display: block;
  width: 100%;
}

.forgot {
  margin-top: -20px;
  text-align: right;
}

.footer {
	width: 100%;
	padding: 10px;
	background: #e99400;
	position: absolute;
	bottom: 0px;
	text-align:center;
}

.footer .contact {
	display: inline-block;
	color:#fff;
	padding-left: 30px;
	text-align: left;
}

.footer img {
	display: inline-block;
}
@media (min-width: 468px) and (max-width: 980px) {
	.footer {
		display: none!important;
	}
}
@media screen and (max-width: 468px) {
	html, body, .form { height: 100%; width:100%; }
	body {
	  background: url('../img/bg.jpg') center top no-repeat;
	  background-size: auto 100%;
	  font-family: 'Roboto Condensed', sans-serif;
	}
    .form {
		padding: 20px 20px 55px 20px!important;
		margin: 0px!important;
		height: auto!important;
		margin-bottom: 50px;
	}
    .tab-group li a {
		padding: 5px!important;
		min-height: 62px;
	}
	.footer {
		position: static!important;
	}
	.footer img {
		display: none;
	}
	.footer .contact {
		padding: 0px;
	}
}