*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
 overflow-y: scroll;
}

a {
  text-decoration: none;
  color: #422A25;
}
a:hover {
  color: #F5B240;
}

.form {
  background: #FFFFFF;
  padding: 40px;
  max-width: 600px;
  margin: 40px auto;
  border-radius: 4px;
  box-shadow: 0 4px 10px 4px rgba(19, 35, 47, 0.3);
}

.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-color: rgba(183,117,0,0.5);
  color: #422A25;
  font-size: 25px;
  float: left;
  width: 50%;
  text-align: center;
  cursor: pointer;
}
.tab-group li a:hover {
  background-color: #F5B240;
  color: #FFFFFF;
}
.tab-group .active a {
  background-color: #422A25;
  color: #FFFFFF;
}

.tab-content > div:last-child {
  display: none;
}

h1 {
  text-align: center;
  color: #422A25;
  font-weight: 400;
  margin: 0 0 40px;
}

input,
textarea {
  font-size: 18px;
  font-weight: 400;
  font-family: 'Josefin Sans', sans-serif;
  display: block;
  width: 100%;
  height: 100%;
  padding: 5px 10px;
  background-image: none;
  border: 1px solid #422A25;
  color: #422A25;
  border-radius: 0;
}
input:focus,
textarea:focus {
  outline: 0;
  border-color: #F5B240;
}

textarea {
  border: 1px solid #422A25;
  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;
}
