body {
  background-color: rgb(214, 150, 212);
  font-family: "Ubuntu", sans-serif;
}
h1 {
  font-size: 36px;
  line-height: 1.5;
  color: #272044;
  text-align: center;
}
form {
  display: flex;
}
.container {
  margin: 120px auto;
  max-width: 600px;
}

header {
  margin-bottom: 30px;
}
.instructions {
  padding: 14px;
  border: 1px solid rgba(39, 33, 66, 0.5);
  border-radius: 50px;
  line-height: 20px;
  font-size: 16px;
  color: #272044;
  width: 75%;
}
.submit-button {
  margin-left: 10px;
  background: blue;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 14px;
  font-size: 16px;
}
.product {
  font-size: 16px;
  background-color: white;
  padding: 20px;
  line-height: 1.5;
}
footer {
  text-align: center;
  font-size: 13px;
  margin-top: 30px;
}
.form-container {
  background-color: white;
  border-radius: 10px;
  margin-bottom: 30px;
  padding: 15px 24px;
}
.hint {
  line-height: 1.5;
  margin-top: 5px;
  opacity: 0.6;
  font-size: 12px;
}
.hidden {
  display: none;
}
.blink {
  animation: blink-animation 1s steps(5, start) infinite;
  -webkit-animation: blink-animation 1s steps(5, start) infinite;
}
@keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
@-webkit-keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
