#email-form {
  background-color: #f9fbfc;
  margin: 10px auto;
  margin-top: 0px;
  font-family: Metropolis;
  padding: 10px;
  width: 100%;
  min-width: 300px;
}


input {
  padding: 10px;
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  font-family: Metropolis;
  border: 0px solid #1A051D;
  background-color: #f9fbfc;
}

input.invalid {
  background-color: #ffdddd;
}


input[type=radio]:checked {
  accent-color: orangered;
}

/* Hide all steps by default: */
.tab {
  display: none;
}

button {
  background-color: #FF6D1D;
  color: #ffffff;
  border: none;
  padding: 10px 30px;
  font-size: 18px;
  font-family: Raleway;
  cursor: pointer;
  border-radius: 6px;
}

button:hover {
  opacity: 0.8;
}

#prevBtn {
  background-color: #bbbbbb;
}

/* 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;
}

.step.active {
  opacity: 1;
}

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

.radio-container {
  display: flex;
  align-items: center;
  margin-left: 0px;
  margin-bottom: 20px;
}

.radio-container label {
  margin-right: 10px;
  margin-left: 5px;
}

.radio-container input {
  width: 5%;
  height: 18px;
  margin-top: -4px;
}


@media (max-width: 767px) {
  .column-2 {
      display: flex;
      flex-direction: column;
      align-items: center; 
  }
}


