:root {
  --primary-color: #3b82f6;
  --text-color: #a6aebd;
  --background-color: #001127;
}

body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: "Inter", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
}

body {
  background: rgb(23, 41, 64);
  background: linear-gradient(
    90deg,
    rgba(16, 35, 58, 1) 0%,
    rgba(0, 17, 39, 1) 80%
  );
}

.container {
  background-color: #333333;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 40px;
  text-align: center;
  width: 100%;
  max-width: 400px;
  position: relative;
}

.container img {
  width: 100%;
  height: 10%;
  margin-bottom: 20px;
}

.container h1 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}

.container h2 {
  color: var(--text-color);
}

.container p {
  font-size: 14px;
  color: var(--text-color);
  margin-bottom: 30px;
}

.container label {
  display: block;
  text-align: left;
  font-size: 14px;
  margin-bottom: 5px;
  color: var(--text-color);
}

.container input {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ced4da;
  border-radius: 4px;
  font-size: 14px;
}

.container button {
  width: 100%;
  padding: 10px;
  background-color: #3b82f6;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
}

.container a {
  display: block;
  margin-top: 20px;
  font-size: 14px;
  color: #6366f1;
  text-decoration: none;
}

.container a:hover {
  text-decoration: underline;
}

/* Define a animação do shake */
@keyframes shake {
  0% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-5px);
  }

  50% {
    transform: translateX(5px);
  }

  75% {
    transform: translateX(-5px);
  }

  100% {
    transform: translateX(0);
  }
}

/* Adicione o estilo para a classe 'shake' */
.shake {
  animation: shake 0.2s ease;
}