* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

html,
body {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #1e1e2f;
}

main {
  width: 20%;
  display: flex;
  flex-direction: column;
  background-color: #3b3b66;
  gap: 1.5rem;
  padding: 1.3rem;
  border-radius: 0.5rem;
}
main input {
  padding: 0.5rem;
  font-size: 1.5rem;
  color: black;
  border-radius: 8px;
  border-style: none;
}
main .btns {
  width: 100%;
  display: flex;
  justify-content: space-around;
}
main .btns button {
  padding: 1rem;
  font-size: 1.2rem;
  background-color: #ff6bcb;
  border-style: none;
  border-radius: 1rem;
}
main .btns button:disabled {
  background-color: #c074a4;
}