body {
  height: 100vh;
}

.login_card {
  margin: 0 auto;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login_form {
  padding: 20px;
  display: flex;
  border-radius: 10px;
  flex-direction: column;
  gap: 5px;
}

.login_image {
  display: flex;
  justify-content: center;
}

.login_image {
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  .login_form {
    height: 100%;
    padding: 20px;
    display: flex;
    border-radius: 0px;
    flex-direction: column;
    gap: 5px;
  }
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.fast {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fadeIn {
  animation-name: fadeIn;
}
