.d-flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.justify-content-between {
  justify-content: space-between;
}

.col-login {
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.col-login-left {
  background: rgb(0, 126, 51);
  background: -moz-linear-gradient(
    0deg,
    rgba(0, 126, 51, 1) 0%,
    rgba(40, 167, 69, 1) 100%
  );
  background: -webkit-linear-gradient(
    0deg,
    rgba(0, 126, 51, 1) 0%,
    rgba(40, 167, 69, 1) 100%
  );
  background: linear-gradient(
    0deg,
    rgba(0, 126, 51, 1) 0%,
    rgba(40, 167, 69, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#007e33", endColorstr="#00007a", GradientType=1);
  justify-content: space-between;
}

.form-group .input-group select.form-control,
.form-group .input-group input.form-control,
button.btn.btn-login {
  height: 45px;
}

button.btn.btn-login {
  background-color: rgb(0, 126, 51);
  box-shadow: 0 0px 0px rgba(0, 0, 0, 0), 0 1px 2px rgba(0, 0, 0, 0);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

button.btn.btn-login:hover {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.form-group .input-group select.form-control:focus,
.form-group .input-group input.form-control:focus,
button.btn.btn-login {
  border: 1px solid rgb(0, 126, 51);
}

.col-login-right {
  background: #ffffff;
  justify-content: center;
}

.col-login-right .login-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

a.login-changelogs {
  border-top: 1px solid #fff;
}

.login-changelogs .card {
  padding: 1em;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.login-changelogs .card:hover {
  color: rgb(0, 126, 51);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16), 0 10px 10px rgba(0, 0, 0, 0.18);
}

.card-body {
  padding-left: 15px;
}

.object-fit {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 6px;
}

h4.card-learnmore {
  margin-top: 15px;
  position: relative;
  color: rgb(0, 126, 51);
  font-weight: 500;
  font-size: 1.2em;
}

h4.card-learnmore span {
  display: inline;
  padding-bottom: 4px;
  border-bottom: 1px solid rgb(0, 126, 51);
}

.alert.alert-danger {
  text-align: center;
  margin: 1em 2em 1em 2em;
  padding-top: 1em;
  padding-bottom: 1em;
  border: 1px solid red;
}

/* Loading Spinner */
.spinner {
  margin: 0;
  width: 70px;
  height: 18px;
  margin: -35px 0 0 -9px;
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
}

.spinner > div {
  width: 18px;
  height: 18px;
  background-color: #333;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: bouncedelay 1.4s infinite ease-in-out;
  animation: bouncedelay 1.4s infinite ease-in-out;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
  }

  40% {
    -webkit-transform: scale(1);
  }
}

@keyframes bouncedelay {
  0%,
  80%,
  100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }

  40% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}