body {
  background-image: url("../images/login-bg-2.jpg");
  background-position: center;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-repeat: no-repeat;
  min-height: 100vh !important;
  min-width: 100% !important;
}

.card {
  border: 1px solid rgba(23, 162, 184, 0.3);
  min-width: 35% !important;
}

.remember {
  text-align: center;
}

.mybtn {
  margin-top: 10px;
  width: 100%;
  border-radius: 20px;
}

.login-logo img {
  /* animation: move 1s infinite alternate; */
  animation: rotate 2s linear infinite;
}

@keyframes move {
  0% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(15px);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}