
/* Clear floats after the columns */
.registration-cell:after {
  content: "";
  display: table;
  clear: both;
}

/* Create two equal columns that floats next to each other */
.process-cell {
  float: left;
  width: 48%;
  padding: auto;
  height: 50%; /* Should be removed. Only for demonstration */
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .process-cell {
    width: 100%;
  }
}