body, html {
  background-color: #f2f2f2;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}


.input-container {
  background-color: white;
  width: 20rem;
  border-radius: 1rem;
  padding: 4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: .5rem;
}

h1 {
  width: 100%;
  color: var(--green);
  margin-bottom: 2rem;
  font-weight: 700;
}
input {
  background-color: #f2f2f2;
  width: 100%;
  /* height: 3rem; */
  border-radius: .5rem;
  border: none;
  padding: .5rem .75rem;
}
div {
  width: 100%;
  gap: .5rem;
  display: flex;

}
button {
  width: 50%;
  padding: .5rem .75rem;
  background-color: #f2f2f2;
  border-radius: .5rem;
  border: none;
}