* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Playfair Display", serif;
}

h1 {
  text-align: center;
}

body {
  height: 100vh;
  background-color: #100;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

input {
  margin-top: 1rem;
  width: 100%;
  height: 50px;
  background-color: #400;
  border: none;
  outline: none;
  border-radius: 1rem;
  color: #ece5dd;
  padding-left: 1rem;
  font-size: 1.2rem;
  text-align: center;
}

.button {
  margin-top: 1rem;
  width: 100%;
  height: 50px;
  background-color: #040;
  border: none;
  border-radius: 1rem;
  font-size: 1rem;
  font-weight: bold;
  color: #ece5dd;
  cursor: pointer;
}

p {
  margin-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.2);
}
.error {
  color: red;
  font-weight: bold;
}
