body 
{
  background: #F8F8F8;
}

.login-page { background: none; }

.logo-register { display: block; width: 70%; margin: 0 auto; }

#regForm {
  background-color: #FFF;
  color: #000;
  margin: 100px auto;
  padding: 40px;
  width: 60%;
  min-width: 300px;
  max-width: 600px;
  border-radius: 1rem;
  box-shadow: rgb(0 0 0 / 10%) 0px 1px 3px 0px, rgb(0 0 0 / 6%) 0px 1px 2px 0px !important;
}

.form-intro { font-size: 1rem; color: #000; }
.help-info { color: #000; font-size: 0.85rem; margin: 10px 0; text-decoration: underline; }
.help-info:hover { color: #000; }
/* Style the input fields */
input,
select {
  padding: 10px;
  width: 100%;
  font-size: 1rem;
  font-family: Arial;
  border: 1px solid #aaaaaa;
  background: #F9F9F9;
  color: #000;
}

input:hover,
input:focus,
select:hover,
select:focus { background: #EAEAEA; color: #000; }

select { text-transform: uppercase; }

/* Mark input boxes that gets an error on validation: */
input.invalid,
select.invalid {
  background-color: #ffdddd;
  color: red;
}

.easy-autocomplete input { color: #FFF!important; }
.easy-autocomplete { width: 100%!important; }
.easy-autocomplete-container { color: #000; }

#regForm #ddd { width: 15.999%;}
#regForm #phone { width: 83.333%; }

.popover { font-size: 0.85rem; color: #000; font-weight: normal; }
.popover-title { font-weight: 100; }

/* Hide all steps by default: */
.tab {
  display: none;
}
.tab h1 { font-size: 1.2rem; color: #FFF; text-align: center; display: block; }

/* Make circles that indicate the steps of the form: */
.step {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbbbbb;
  border: none;
  border-radius: 50%;
  display: inline-block;
  opacity: 0.5;
}

/* Mark the active step: */
.step.active {
  opacity: 1;
}

/* Mark the steps that are finished and valid: */
.step.finish {
  background-color: #ff5a00;
} 

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus,
.btn-primary { background: #ff5a00!important; border-color: #ff5a00!important; color: #FFF!important; font-size: 1.2rem; }

.btn-default:hover,
.btn-default:active,
.btn-default:focus,
.btn-default { background: #666; color: #FFF!important; border-color: #666!important; font-size: 1.2rem; }

@media only screen and (max-width: 768px)
and (orientation : portrait)  {
  html,
  body { height: 100vh; }

  .logo-register { width: 100%; margin: 0 auto;  }
  #regForm { padding: 20px; margin: 30px auto; min-width: 80%; }
  .tab h1 { font-size: 1rem; } 

  #regForm #ddd { width: 15.999%;}
  #regForm #phone { width: 72.777%; }

}