
/* Clear floats after the columns */
.login-panel-clickup:after {
  content: "";
  display: table;
  clear: both;
  align-items: justify;
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .login-panel-clickup:after {
    width: 100%;
    align-items: center;
  }
}

/* Create two equal columns that floats next to each other */
.cell-visits {
  float: left;
  width: 10;
  padding: auto;
  height: 55px; /* 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) {
  .cell-visits {
    width: 100%;
    align-items: center;
  }
}


