@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap");

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  background-color: rgb(33, 5, 53);
  color: white;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

h1 {
  font-size: 40px;
  top: 150px;
  margin-bottom: 50px;
}

.content {
  background-color: rgb(64, 26, 91);
  border-radius: 20px;
  margin: 30px;
  width: 415px;
}

.password {
  margin: 18px 0;
  background-color: rgb(96, 37, 135);
  text-align: center;
  border-radius: 20px;
  padding: 5px 0;
  outline: none;
  border: none;
  width: 100%;
  height: 55px;
  font-size: 30px;
  color: white;
}

p {
  margin: 15px;
}

form {
  width: 100%;
  margin: auto;
  text-align: center;
}

#button {
  margin: 30px;
  background-color: rgb(78, 75, 79);
  padding: 18px;
  border-radius: 15px;
  color: white;
  font-size: 20px;
  transition: 100ms ease-in-out;
}

#button:active {
  transform: scale(1.05);
  background-color: green;
}
