*  {
  margin:0;
  padding:0;
}

@font-face {
  font-family: Gotham-Bold;
  src: url(/fonts/Gotham-Bold.otf);
}

body{
  background-color: #FF5800;
  padding: 0;
  font-family: Gotham-Bold, sans-serif;
  display: flex;
  flex-direction: column;
}

.container {
  min-height:100%;
  position:relative;
  max-width: 800px;
  margin: 0 auto;
}

.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: #fff;
}

.steps {
  max-width: 400px;
  padding: 0px 50px 100px 50px;
  margin: 0px auto; 
  font-family: Arial, Helvetica, sans-serif;
  font-weight: lighter;
}

.progressbar {
  margin: 0;
  padding: 0;
  counter-reset: step;
}
.progressbar li {
  list-style-type: none;
  width: 25%;
  float: left;
  font-size: 10px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
}

.progressbar li:before {
  width: 20px;
  height: 20px;
  content: "";
  color: #fff;
  line-height: 20px;
  border: 1px solid #fff;
  display: block;
  text-align: center;
  margin: 0 auto 10px auto;
  border-radius: 50%;
  background-color: white;
}

.progressbar li:after {
  width: 100%;
  height: 2px;
  content: '';
  position: absolute;
  background-color: #fff;
  top: 10px;
  left: -50%;
  z-index: -1;
}
.progressbar li:first-child:after {
  content: none;
}
.progressbar li.active {
  color: #15DE34;
  font-size: 20px;
}
.progressbar li.active:before {
  border: 2px solid #fff;
  background-color: #15DE34;
  content: "";
  color: #15DE34;
  font-size: 20px;
}
.progressbar li.active:after {
  background-color: #15DE34;
}

.progressbar li.active + li:before {
  /* background-color: #15DE34 */
}

.texto {
  color: #ffffff;
  padding: 10px;
  margin: 0px;
}

.titulo {
  font-size: 30px;
  line-height: 25pt;
}

.subtitulo {
  font-size: 20px;
  line-height: 20pt;
}

.vfl-label-on-input {
  top: -2em !important;
  padding-left: 10px;
  color: #fff !important;
}

.vfl-label-on-focus {
  top: -2em !important;
  padding-left: 10px;
  color: #fff !important;
}

.vfl-label + input {
  padding-left: 0;
  font-size: 100%;
  border: 0;
  border-bottom: 0px solid #aaa;
  transition: border 0.2s;
}

.vfl-label-on-focus + input {
  border-bottom: 0px solid #ffffff;
}

.input-text {
  border-radius: 25px;
  text-indent: 20px;
}

.alert {
  background-color: transparent;
  border: 0px;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
}

@media (max-width: 600px) {
  header {
    justify-content: space-between;
    display: flex;
    margin-top: 10px;
  }
  .logo {
    height: 40px;
    padding: 2px;
  }
  .logo_seguro {
    height: 20px;
    margin: 5px;
  }
}

@media (min-width: 500px) {
  header {
    justify-content: space-between;
    display: flex;
    margin-top: 20px;
  }
  .logo {
    height: 80px;
    padding: 2px;
  }
  .logo_seguro {
    height: 30px;
    margin: 5px;
  }

}