*, *:before, *:after {
  box-sizing: border-box;
}


.form {
  background: rgba(224, 224, 224, 0.9) !important;
    padding-top: 40px !important;
    padding-right: 10px !important;
    padding-bottom: 40px !important;
    padding-left: 10px !important;
  margin: 40px auto !important;
  border-radius: 4px !important;
  box-shadow: 0 4px 10px 4px rgba(19, 35, 47, 0.3) !important;
  min-width:500px !important;
  color:#000;
}

.form .tab-group {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}
.form .tab-group:after {
  content: "";
  display: table;
  clear: both;
}
.form .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;
}
.form .tab-group li a:hover {
  background: #20316b;
  color: #ffffff;
}
.form .tab-group .active a {
  background: #35498c;
  color: #ffffff;
}

.form .tab-content > div:last-child {
  display: none;
}



.form label {
  position: absolute !important;
  -webkit-transform: translateY(6px) !important;
          transform: translateY(6px) !important;
  left: 13px !important;
  color: rgba(25, 25, 25, 1.0) !important;
  -webkit-transition: all 0.25s ease !important;
  transition: all 0.25s ease !important;
  -webkit-backface-visibility: hidden !important;
  pointer-events: none !important;
  font-size: 22px !important;
  margin-top:2px;
}
.form label .req {
  margin: 2px !important;
  color: #93acff !important;
}

.form label.active {
  -webkit-transform: translateY(50px) !important;
          transform: translateY(50px) !important;
  left: 2px !important;
  font-size: 14px !important;
  color:#333;
}
.form label.active .req {
  opacity: 0 !important;
}

.form label.highlight {
  color: #272727 !important;
}

.form input, textarea {
  font-size: 22px !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  padding: 5px 10px !important;
  background: none !important;
  background-image: none !important;
  border: 1px solid #272727 !important;
  color: #272727 !important;
  border-radius: 0 !important;
  -webkit-transition: border-color .25s ease, box-shadow .25s ease !important;
  transition: border-color .25s ease, box-shadow .25s ease !important;
}
.form input:focus, textarea:focus {
  outline: 0 !important;
  border-color: #35498c !important;
}

.form textarea {
  border: 2px solid #a0b3b0 !important;
  resize: vertical !important;
}

.form .field-wrap {
  position: relative !important;
  margin-bottom: 50px !important;
}

.form .top-row:after {
  content: "" !important;
  display: table !important;
  clear: both !important;
}
.form .top-row > div {
  float: left !important;
  width: 48% !important;
  margin-right: 4% !important;
}
.form .top-row > div:last-child {
  margin: 0 !important;
}

.form .button {
  border: 0;
  outline: none;
  border-radius: 0;
  padding: 15px 0;
  font-size: 2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  background: #35498c;
  color: #ffffff;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-appearance: none;
}
.form .button:hover, .button:focus {
  background: #20316b;
}

.form .button-block {
  display: block;
  width: 100%;
}

.form .forgot {
  margin-top: -20px;
  text-align: right;
}
