*, *:before, *:after {
  box-sizing: border-box;
}

html {
  overflow-y: scroll;
}

body {
  background: #23242D;
  font-family: 'Titillium Web', sans-serif;
}

a {
  text-decoration: none;
  color: #1ab188;
  transition: .5s ease;
}
a:hover {
  color: #179b77;
}

.form {
  background: #23242D;
  padding: 40px;
  max-width: 600px;
  margin: 40px auto;
  border-radius: 4px;
  box-shadow: 0 4px 10px 4px rgba(19, 35, 47, 0.3);
  padding-top: 10px;
  margin-top: 10px;
}

.tab-group {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}
.tab-group:after {
  content: "";
  display: table;
  clear: both;
}
.tab-group li a {
  display: block;
  text-decoration: none;
  padding: 15px;
  background: none;
  color: #a0b3b0;
  font-size: 16px;
  float: left;
  width: 50%;
  text-align: center;
  cursor: pointer;
  transition: .5s ease;
    text-transform:uppercase;

}
.tab-group li a:hover {
  background: none;
  color: #ffffff;
}
.tab-group .active a {
  border-bottom: solid 2px #37B371;
  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: 0px;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.25s ease;
  -webkit-backface-visibility: hidden;
  pointer-events: none;
  font-size: 18px;
}
label .req {
  margin: 0px;
  color: #1ab188;
}

label.active {
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  left: 0px;
  font-size: 14px;
}
label.active .req {
  opacity: 0;
}

label.highlight {
  color: #ffffff;
}

input, textarea, select {
  font-size: 22px;
  display: block;
  width: 100%;
  height: 40px;
  background: none;
  background-image: none;
  border: none;
  border-bottom: 1px solid #a0b3b0;
  color: #ffffff;
  border-radius: 0;
  transition: border-color .25s ease, box-shadow .25s ease;
  font-family: 'Titillium Web', sans-serif;
}
input:focus, textarea:focus {
  outline: 0;
  border-color: #1ab188;
  font-family: 'Titillium Web', sans-serif;
}

textarea {
  border: 2px solid #a0b3b0;
  resize: vertical;
}

.field-wrap {
  position: relative;
  margin-bottom: 40px;
}

.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;
}

.button {
  border: 0;
  outline: none;
  border-radius: 3px;
  padding: 15px 0;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  background: #38BD76;
  color: #23242D;
  transition: all 0.5s ease;
  -webkit-appearance: none;
}
.button:hover, .button:focus {
  background: #179b77;
}

.button-block {
  display: block;
  width: 100%;
}

.forgot {
  margin-top: -20px;
  text-align: right;
  margin-bottom: 20px;
}

.socialbutton {
	font-family: 'Titillium Web', sans-serif;
}

.socialbutton {
    padding: 14px;
    font-size: 16px;
    width: 100%;
    text-align: left;
    text-decoration: none;
	margin-bottom: 10px;
	  border-radius: 3px;

}

.socialbutton .fa {
	margin-right: 20px;
}

.socialbutton:hover {
    opacity: 0.7;
}

/* Facebook */
.socialbutton.facebook {
    background: #3B5998;
    color: white;
}

/* Twitter */
.socialbutton.google {
    background: #CF4332;
    color: white;
}

.fancy {
  line-height: 0.5;
  text-align: center;
  color: #57585F;
  margin-top: 40px;
  margin-bottom: 30px
}
.fancy span {
  display: inline-block;
  position: relative; 
  text-transform:uppercase;
 
}
.fancy span:before,
.fancy span:after {
  content: "";
  position: absolute;
  height: 2px;
  background-color: #606067;
  top: 2px;
  width: calc(100% + 70px);
}
.fancy span:before {
  right: 100%;
  margin-right: 15px;
}
.fancy span:after {
  left: 100%;
  margin-left: 15px;
}