section.signup-page {
  padding: 0;
}
.left-sec,
.right-sec {
  width: 50%;
  padding: 80px 20px;
  min-height: 100%;
}
@media screen and (max-width: 780px) {
  .left-sec,
  .right-sec {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .left-sec,
  .right-sec {
    padding: 40px 20px;
  }
}
.right-sec {
  background: #0070ba;
  color: #fff;
  padding: 80px 60px;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 780px) {
  .right-sec {
    display: none;
  }
}
.right-sec > img {
  display: block;
  width: 100%;
  height: auto;
}
.right-sec .logo {
  position: absolute;
  top: 30px;
  right: -70px;
}
.right-sec .logo img {
  width: 140px;
}
.right-sec h2 {
  font-weight: 300;
  margin-bottom: 14px;
}
.right-sec p {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 30px;
  letter-spacing: 1px;
}
.right-sec .su-step {
  width: 85%;
  padding: 14px;
  background: #eee;
  color: #333;
  margin: 0 auto 20px;
  font-weight: 300;
}
.right-sec .su-step div:first-child {
  width: 10%;
  font-size: 36px;
  font-weight: 500;
  margin-right: 14px;
  text-align: center;
}
.right-sec .su-step div:last-child {
  width: 90%;
  text-align: left;
}
/*form styles*/
#msform {
  width: 460px;
  min-height: 520px;
  margin: 0 auto;
  padding: 20px 40px;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  #msform {
    width: 95%;
    padding: 20px 20px;
  }
}
@media screen and (max-width: 780px) {
  #msform {
    width: 460px;
    margin: 30px auto 0;
    padding: 20px 0;
  }
}
@media screen and (max-width: 480px) {
  #msform {
    width: 100%;
    margin: 0 auto;
    padding: 20px 0;
  }
}
#msform .sol-cont {
  position: relative;
  width: 100%;
}
#msform .sol-cont fieldset {
  border: none;
  margin: 0;
  border-radius: 3px;
  box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
  padding: 25px 30px;
  /*stacking fieldsets above each other*/
  position: absolute;
  width: 100%;
  /*Hide all except first fieldset*/
}
#msform .sol-cont fieldset:not(:first-of-type) {
  display: none;
}
#msform .sol-cont fieldset input,
#msform .sol-cont fieldset textarea {
  width: 100%;
  margin-bottom: 10px;
}
/*buttons*/
#msform .action-button {
  width: 100%;
  font-weight: 500;
}
#msform .previous {
  margin-bottom: 10px;
}
/*headings*/
.fs-title {
  font-size: 16px;
  text-transform: uppercase;
  color: #0070ba;
  margin-bottom: 10px;
}
.fs-subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}
/*progressbar*/
#progressbar {
  margin-bottom: 20px;
  overflow: hidden;
  /*CSS counters to number the steps*/
  counter-reset: step;
}
#progressbar li {
  text-transform: uppercase;
  font-size: 10px;
  width: 33.33%;
  float: left;
  position: relative;
}
@media screen and (max-width: 360px) {
  #progressbar li span {
    visibility: hidden;
  }
}
#progressbar li:before {
  content: counter(step);
  counter-increment: step;
  width: 30px;
  line-height: 30px;
  display: block;
  font-size: 12px;
  color: #333;
  background: #eee;
  border-radius: 3px;
  margin: 0 auto 5px auto;
}
/*progressbar connectors*/
#progressbar li:after {
  content: '';
  width: 100%;
  height: 2px;
  background: #eee;
  position: absolute;
  left: -50%;
  top: 14px;
  z-index: -1;
  /*put it behind the numbers*/
}
#progressbar li:first-child:after {
  /*connector not needed before the first step*/
  content: none;
}
/*marking active/completed steps green*/
/*The number of the step and the connector before it = blue*/
#progressbar li.active:before,
#progressbar li.active:after {
  background: #0070ba;
  color: white;
}
