body {
  color: #fff;
  overflow-x: hidden;
  height: 100%;
  background-color: #2d4f68;
  background-repeat: no-repeat;
}

#logo {
  position: absolute;
  width: 30px;
  height: 30px;
  left: 15px;
  top: 15px;
}

.fieldlabels {
  color: #455a64 !important;
  text-align: left;
}

#progressbar {
  margin-bottom: 30px;
  overflow: hidden;
  color: #455a64;
  padding-left: 0px;
  margin-top: 30px;
}

#progressbar li {
  list-style-type: none;
  font-size: 13px;
  width: 33.33%;
  float: left;
  position: relative;
  font-weight: 400;
}

#progressbar #step1:before {
  content: "1";
  color: #fff;
}

#progressbar #step2:before {
  content: "2";
  color: #fff;
}

#progressbar #step3:before {
  content: "3";
  color: #fff;
}

#progressbar li:before {
  width: 40px;
  height: 40px;
  line-height: 45px;
  display: block;
  font-size: 20px;
  background: #455a64;
  border-radius: 50%;
  margin: auto;
  padding: 0px;
}

#progressbar li:after {
  content: "";
  width: 100%;
  height: 2px;
  background: #455a64;
  position: absolute;
  left: 0;
  top: 21px;
  z-index: -1;
}

#progressbar li:last-child:after {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  position: absolute;
  left: -50%;
}

#progressbar li:nth-child(2):after {
  left: -50%;
}

#progressbar li:first-child:after {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  position: absolute;
  left: 50%;
}

#progressbar li:last-child:after {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

#progressbar li:first-child:after {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

#progressbar li.active:before,
#progressbar li.active:after {
  background: #0f198a;
}

.card {
  background-color:#8bc53f;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  padding: 60px 40px 40px 40px;
  z-index: 0;
  display: none;
}

.card.show {
  display: block;
}

.form-control-label {
  font-size: 22px !important;
  color: #fff;
  letter-spacing: 1px;
}

::placeholder {
  color: #fff;
  opacity: 1;
  font-weight: 300;
}

:-ms-input-placeholder {
  color: #fff;
  font-weight: 300;
}

::-ms-input-placeholder {
  color: #fff;
  font-weight: 300;
}

input,
textarea,
button {
  background-color: #8bc53f !important;
  padding: 8px 15px 8px 15px;
  border-radius: 0px !important;
  margin-bottom: 25px;
  margin-top: 2px;
  width: 100%;
  box-sizing: border-box;
  color: #2c3e50;
  background-color: #eceff1;
  border: none;
  border-bottom: 1px solid #ccc;
  font-size: 18px !important;
  color: #fff !important;
  font-weight: 300;
}

input:focus,
textarea:focus {
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border-bottom: 1px solid #9fa8da;
  outline-width: 0;
  font-weight: 400;
}

button:focus {
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  outline-width: 0;
}

.circle {
  position: relative;
}

.fa-long-arrow-right {
  color: #0f198a;
  background-color: #fff;
  padding: 12px;
  margin: 5px;
  border-radius: 50%;
  border: 3px solid #0f198a;
  position: absolute;
  left: -28px;
  top: 12px;
  cursor: pointer;
}

.fa-long-arrow-right:hover {
  color: #fff;
  background-color: #5ca3e6;
}

.fa-long-arrow-left {
  position: absolute;
  left: 20px;
  top: 20px;
  color: #fff;
  cursor: pointer;
}

.check-mark {
  width: 180px;
  height: 180px;
}

@import url(https://fonts.googleapis.com/css?family=Open+Sans);

/*Page styles*/
html { height: 100%; }

body {
  height: 100%;
  margin: 0;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}

.boxes {
  margin: auto;
  padding: 10px;
}

/*radioes styles*/
input[type="radio"] { display: none; }

input[type="radio"] + label {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 20px;
  font: 14px/20px 'Open Sans', Arial, sans-serif;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

input[type="radio"] + label:last-child { margin-bottom: 0; }

input[type="radio"] + label:before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #0f198a;
  position: absolute;
  left: 0;
  top: 0;
  opacity: .6;
  -webkit-transition: all .12s, border-color .08s;
  transition: all .12s, border-color .08s;
}

input[type="radio"]:checked + label:before {
  width: 10px;
  top: -5px;
  left: 5px;
  border-radius: 0;
  opacity: 1;
  border-top-color: transparent;
  border-left-color: transparent;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media (min-width: 786px) {
  #logo {
    width: 45px;
    height: 45px;
  }
}