* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  background-color: rgb(174, 216, 230);
  padding-inline: auto;
  font-family: Arial, Helvetica, sans-serif;
}

main {
  display: flex;
  flex-direction: column;
  width: 80%;
  max-width: 410px;
  align-items: center;
  background-color: rgb(174, 216, 230);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  border-radius: 0.5rem;
  gap: 1.5rem;
  padding-block: 1.3rem;
  margin: 2rem auto 1rem;
}

h2 {
  font-style: oblique;
}
div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

div input {
  width: 300px;
  height: 2rem;
  padding-inline: 0.3rem;
}

div input::placeholder {
  /* color: pink; */
  background-image: linear-gradient(to bottom, rgb(251, 4, 45) 50%, purple 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

div.bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

div.bottom button {
  background-color: red;
  padding: 0.5rem 1.7rem;
  border: none;
  width: 7rem;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
  border-radius: 2rem;
  color: rgb(244, 235, 235);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  background-image: linear-gradient(
    to bottom,
    rgb(251, 4, 169) 50%,
    purple 50%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

div.bottom .info {
  padding: 0.2rem 1rem;
  color: red;
}

@media screen and (max-width: 600px) {
  div input {
    width: 240px;
    height: 2rem;
    padding-inline: 0.2rem;
  }
}
