body {
  background: black;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.login {
  display: flex;
  align-items: center;
  justify-content: center;
}

input {
  background-color: #1d1d1d;
  border: none;
  border-radius: 1rem;
  padding: 1rem 2rem;
  color: inherit;
  font-family: inherit;
  font-size: 1.6rem;
  text-align: center;
}

form {
  display: flex;
  gap: 1rem;
}

button {
  background-color: #1d1d1d;
  border: none;
  border-radius: 1rem;
  padding: 1rem 2rem;
  color: inherit;
  font-family: inherit;
  font-size: 1.6rem;
  text-align: center;
  cursor: pointer;
}

#input {
  transition: all 0.2s ease;
}

#input.animation {
  animation: shake 0.5s ease-in-out;
  background-color: rgb(126, 11, 11);
}

@keyframes shake {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  50% {
    transform: translateX(5px);
  }
  75% {
    transform: translateX(-5px);
  }
  100% {
    transform: translateX(0);
  }
}
#input:focus {
  outline: none;
  box-shadow: 0 0 0.5rem #1d1d1d;
}
