@keyframes loading {
  0% {
    transform: scale(1);
  }
  20% {
    transform: scale(1, 2.2);
  }
  40% {
    transform: scale(1);
  }
}
.login-page {
  justify-content: start;
  height: 80vh;
  padding-top: 20vh;
}

.login-box {
  width: 450px;
}

@media screen and (max-width: 480px) {
  .login-box {
    width: 400px;
  }
}
.card {
  box-shadow: none;
}

.card-primary.card-outline {
  border-top: none !important;
}

.login-card-body {
  background-color: #e9ecef;
}

.input-group {
  flex-direction: column;
  margin-bottom: 40px;
}

input {
  height: 48px !important;
}
input::-moz-placeholder {
  color: rgb(195, 195, 195) !important;
  font-size: 14px !important;
  letter-spacing: 2.5 !important;
}
input::placeholder {
  color: rgb(195, 195, 195) !important;
  font-size: 14px !important;
  letter-spacing: 2.5 !important;
}

.form-control {
  width: 100% !important;
  border: none !important;
  border-radius: 0px !important;
}

button {
  margin-top: 28px;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  width: 100%;
  padding: 10px 10px;
  font-weight: bold;
  border: 2px solid #394656;
  background: #394656;
  color: #fff;
  transition: 0.5s;
  opacity: 0.9;
}
button:hover {
  color: #394656;
  background: #fff;
}