#footer-login{
  text-align: center;
}

#footer-login > div > a {
  padding: 0%;
}

footer{
  position: inherit;
  width: 100%;
  bottom: 0%;
}

#container-login{
  margin-top: 5%;
}

#cont-log-coop{
  margin: auto;
  text-align: center;
}

.content-registro{
  margin-bottom: 100px;
}

#card-registro{
  margin-top: 10%
}

#card-registro > h4 {
  color: #046e7d;
  background: #1d9a811f;
}

#icon-registro{
  text-align: center;
}

#icon-registro > i {
  font-size: 115px;
  margin-top: 16%;
  color: #046e7d;
}

#icon-reset {
  text-align: center;
}

#icon-reset > i {
  font-size: 115px;
  margin-top: 20%;
  color: #046e7d;
}

@media (min-width: 770px){
  #icon-registro {
  	margin-top: 4%
  }
}

@media (max-width: 770px){
  #card-registro > h4 {
    text-align: center;
  }
  #icon-registro > i {
  	margin-top: 5%
  }

  #icon-reset > i {
  	margin-top: 5%
  }

  #btn-register{
  	text-align: center;
  }
}

.icon-form{
  font-size: 24px;
  color: #046e7d;
}

#body-register{
  margin-top: 4%;
  margin-bottom: 4%;
}

#btn-register{
  text-align: center;
}

#btn-register > button {
  font-size: 19px;
}

#cont-reset-pass{
  margin-top: 8%;
}



/*form dinamico*/
#msform {
  width: 100%;
  text-align: center;
}
#msform fieldset {
  background: white;
  border: 0 none;
  border-radius: 3px;
  box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
  padding: 3% 4%;
  box-sizing: border-box;
  width: 100%;

}
/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
  display: none;
}
/*inputs*/
#msform input, #msform textarea {
  padding: 10px;
  border: 1px solid #ccc;
  margin-bottom: 10px;
  width: 100%;
  color: #2C3E50;
  height: 53%;
}
/*buttons*/
#msform .action-button {
  width: 100px;
  background: #0d6072;
  font-weight: bold;
  color: white;
  border: 0 none;
  border-radius: 1px;
  cursor: pointer;
  padding: 10px 5px;
  margin: 10px 5px;
}
#msform .action-button:hover, #msform .action-button:focus {
  box-shadow: 0 0 0 2px white, 0 0 0 3px #27AE60;
}
/*headings*/
.fs-title {
  font-size: 21px;
  text-transform: uppercase;
  color: #2C3E50;
  margin-bottom: 10px;
}
.fs-subtitle {
  font-size: 20px;
  color: #666;
  margin-bottom: 20px;
}
/*progressbar*/
#progressbar {
  margin-bottom: 10px;
  overflow: hidden;
  /*CSS counters to number the steps*/
  counter-reset: step;
  padding: 0%;
}
#progressbar li {
  list-style-type: none;
  color: #0b6375;
  text-transform: uppercase;
  font-size: 16px;
  width: 33.33%;
  float: left;
  position: relative;
}
#progressbar li:before {
  content: counter(step);
  counter-increment: step;
  width: 50px;
  line-height: 35px;
  display: block;
  font-size: 20px;
  color: #0b6375;
  background: #5022221f;
  border-radius: 3px;
  margin: 0 auto 5px auto;
  padding: 1%;
}
/*progressbar connectors*/
#progressbar li:after {
  content: '';
  width: 100%;
  height: 2px;
  background: #0d6072;
  position: absolute;
  left: -50%;
  top: 9px;
  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 = green*/
#progressbar li.active:before,  #progressbar li.active:after{
  background: #e47100;
  color: white;
}

.form-check {
  padding: 10px !important;
  box-shadow: 4px 1px 5px 0px #105b6e;
}

.swal2-popup .swal2-styled.swal2-confirm {
  background-color: #046e7d !important;
}