/* Style the form */
#regForm {
  background-color: #dcd7be;
  margin: 100px auto;
  padding: 40px;
  width: 70%;
  min-width: 300px;
  border-radius: 30px;
}
body{
   background-color: #edeae1; 
}
figure{
    display: inline;
}
/* Style the input fields */
input {
  padding: 10px;
  font-size: 17px;
  font-family: Raleway;
  border: 5px solid #550606;
  border-radius: 5px;
   resize: vertical;
   width: 90%;
}
.other{
    width: 10%;
}

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

/* Hide all steps by default: */
.tab {
  display: none;
  align-content: center;
}

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

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

/* Mark the steps that are finished and valid: */
.step.finish {
  background-color: #0bd78c;
}
h1,input,p{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif
}