* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  color: inherit;
}

body {
  font-family: "Geist Pixel", sans-serif;
  background-color: #f6f2eb;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-width: 300px;
  max-width: 600px;
  padding: 20px 20px;
  position: relative;
  /* padding-top: 50px; */
  border-radius: 10px;
  height: 300px;
  width: 100%;
  box-shadow: 2px 5px 2px rgba(1, 1, 1, 0.25);
  gap: 2rem;
}
.output {
  transition: all ease-in-out 0.25s;
  position: absolute;
  background-color: #fff;
  border: 1px solid #ccc;
  border-style: dashed;
  top: -12%;
  font-size: 40px;
  font-weight: 900;
  padding: 10px 20px;
  border-radius: 5px;
}
.content {
  display: flex;
  gap: 10px;
}

input {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  background-color: #f6f2eb;
  margin-bottom: 20px;
  outline: none;
  height: 100%;
}

input[type="submit"] {
  background-color: rgb(39, 39, 35);
  outline: none;
  color: #ccc;
  border-radius: 5px;
  border: none;
  padding: 5px;
  min-width: 45%;
  cursor: pointer;
  transition: all ease-in-out 0.25s;
}
input[type="submit"]:hover {
  background-color: rgb(59, 59, 52);
}
input[type="submit"]:active {
  transform: scale(0.8);
}
.error {
  background-color: #f8d7da;
  color: #842029;
  border: 1px solid #f5c2c7;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border-radius: 0.375rem;
  width: 100%;
  display: none;
}
.error.active {
  display: flex;
}
