* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: url("https://iteqescolas.com.br/SAE/bg-sae1.jpg");
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  width: 420px;
  background: transparent;
  border: 2px solid #9b9b9b;
  backdrop-filter: blur(20px);
  border-radius: 10px;
  padding: 30px 40px;
}

h1 {
  font-size: 36px;
  text-align: center;
  color: #fff;
}

.input-container {
  position: relative;
  width: 100%;
  height: 50px;
  margin: 30px 0;
}

.input-container input {
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  outline: none;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  font-size: 16px;
  color: #fff;
  padding: 20px 45px 20px 20px;
}

.input-container input::placeholder {
  color: #fff;
}

.input-container img {
  position: absolute;
  right: 24px;
  top: 20%;
  margin-top: 5px;
}

.input-container a {
  font-size: 16px;
  margin-top: 5px;
  color: #fff;
  text-decoration: none;
}

.input-container a:hover {
  text-decoration: underline;
}

.submit-button {
  /*botão entrar*/
  width: 100%;
  height: 50px;
  background-color: #9b9b9b;
  border: none;
  border-radius: 10px;
  color: #fff;
  font-weight: 700;
  margin-top: 24px;
  cursor: pointer;
  outline: none;
  font-size: 16px;
}

.submit-button:hover {
  background-color: #6e16da;
}

.register-link p {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
}

.register-link {
  text-align: center;
  margin: 20px 0;
}

.register-link p a {
  font-size: 16px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.register-link p a:hover {
  text-decoration: underline;
}
@keyframes bounceIn {
  0% {
      transform: scale(0.3);
      opacity: 0;
  }
  50% {
      transform: scale(1.1);
      opacity: 1;
  }
  70% {
      transform: scale(0.9);
  }
  100% {
      transform: scale(1);
  }
}

.modal-content {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  width: 300px;
  text-align: center;
  position: relative;
  animation: bounceIn 2s ease forwards; /* Aplica a animação de bounce */
}

