body, html {
  background-color: #1a2027;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}


.input-container {
  background-color: #1d242c;
  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: #f2f2f209;
  width: 100%;
  /* height: 3rem; */
  border-radius: .5rem;
  border: none;
  font-weight: 600;
  padding: .5rem .75rem;
  color: white;
}
div {
  width: 100%;
  gap: .5rem;
  display: flex;

}
button {
  width: 50%;
  font-weight: 600;
  padding: .5rem .75rem;
  background-color: #f2f2f209;
  border-radius: .5rem;
  border: none;
  color: white;
}
button:hover { 
  background-color: #f2f2f211;
  cursor: pointer;
}
