section .container {
  min-height: 68vh;
  max-width: 1100px;
  display: flex;
}
.g-row-2 {
  flex-shrink: 0;
  flex-grow: 1;
}

.col-img img {
  animation: animateImg 6s infinite linear;
}
@keyframes animateImg {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }

  100% {
    transform: translateY(0);
  }
}

.col-txt,
.col-img {
  display: flex;
  align-items: center;
}
.col-txt > div {
  width: 100%;
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .col-img {
    display: none;
  }
}

.forgot-pass-box {
  display: flex;
  justify-content: end;
  margin-top: 25px;
}
.forgot-pass-box a {
  font-size: 11px;
}

.login-form label {
  font-size: 13px;
  color: rgb(103, 102, 102);
}
