html,
body {
  padding: 0;
  margin: 0;
}

body {
  background-color: #fbdaff;
  box-sizing: border-box;
  line-height: 2.2rem;
}

input[type="email"],
input[type="url"],
input[type="search"],
input[type="text"] {
  border: none;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.5);
  background: linear-gradient(
    20deg,
    rgba(251, 218, 255, 1) 0%,
    rgba(255, 255, 255, 1) 62%
  );

  width: 100%;
  min-height: 2rem;
  padding-left: 10px;
}

button[type="submit"],
button[type="submit"]:hover,
button[type="submit"]:focus {
  background-color: rgba(175, 89, 255, 0.8);
  padding: 9px;
  padding-top: 11px;
  border: none;
  border-radius: 5px;
}
