<style>
body {
	margin:0px;
	padding:0px;
  font-size: 17px;
  font-family: Raleway;
}
p {
	padding-top: 0.5em;
	text-align: left;
	word-break: break-word;
}
/* Style the form */
#regForm {
  background-color: #ffffff;
  padding: 0.5em;
  min-width: 300px;
  box-sizing: border-box;
  clear: both;
  font-family: Raleway;
  text-align: center;
}

/* Style the input fields */
input {
  padding: 10px;
  width: 100%;
  border: 1px solid #aaaaaa;
  box-sizing: border-box;
}

/* Mark input boxes that gets an error on validation: */
input.invalid {
  background-color: #ffdddd;
}

/* Hide all steps by default: */
.tab {
  display: none;
  text-align: center;
}
.tab p, #location {
  text-align: left;
}

button {
  background-color: #04AA6D;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  width: 100%;
	margin: 0.5em auto;
}
button:hover {
  opacity: 0.8;
}

#nextBtn {
  width: unset;
}
#prevBtn {
  background-color: #bbbbbb;
  width: unset;
}


/* 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: #04AA6D;
}
@media only screen and (min-width: 992px) {
#regForm {
  margin: 100px auto;
  width: 70%;
}}
</style>