body,
html {
  margin: 0;
  height: 0;
  width: 100%;
}
.flex-row {
  display: flex;
  direction: row;
}
.flex-column {
  display: flex;
  flex-direction: column;
}
.login-column {
  width: 100%;
  height: 100vh;
  background-color: #488CCB;
}
.vh-center {
  justify-content: center;
  align-items: center;
}
.login-card {
  padding: 25px;
  width: 90%;
  background-color: white;
  border-radius: 2px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.login-logo {
  width: 200px;
  margin-bottom: 15px;
}
@media screen and (min-width: 992px) {
  .image-column {
    width: 50%;
    height: 100vh;
    background-image: url('/img/login.jpg');
    background-repeat: no-repeat;
    background-size: cover;
  }
  .login-column {
    width: 50%;
  }
}
@media screen and (min-width: 600px) {
  .login-card {
    width: 350px;
  }
}