.container {
  margin: 120px auto;
  max-width: 600px;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-weight: 100;
}
body {
  background: linear-gradient(
    98.3deg,
    rgb(0, 0, 0) 10.6%,
    rgb(102, 8, 128) 97.7%
  );
}
a {
  color: #f453ae;
}
header {
  margin-bottom: 20px;
}

h2 {
  text-align: center;
  font-weight: 600;
  font-size: 20px;
  color: #ffffff;
  line-height: 1.5;
}
.formContainer {
  padding: 20px;
  background-color: #ffffff;
  box-shadow: 0px 20px 60px rgba(65, 50, 100, 0.08);
  margin-bottom: 20px;
}
form {
  display: flex;
}
.hint {
  line-height: 1.5;
  font-size: 12px;
  margin-top: 3px;
  opacity: 0.7;
}
.hidden {
  display: none;
}

.inputField {
  flex: 1;
  margin-right: 10px;
  padding: 10px;
  border: 1px solid #ccc;
  font-size: 16px;
}

.submitButton {
  background-color: #f453ae;
  color: #ffffff;
  font-size: 16px;
  border: none;
  padding: 10px 35px;
  border-radius: 5px;
  cursor: pointer;
}
#recipeOutputContainer {
  font-size: 16px;
  background-color: #ffffff;
  padding: 20px;
  line-height: 20px;
  border-left: 3px solid #ae196d;
  border-radius: 10px;
  box-shadow: 0px 20px 60px 0px rgba(65, 50, 100, 0.08);
  margin-bottom: 15px;
}
footer {
  text-align: center;
  font-size: 14px;
  color: #666666;
  margin-top: 20px;
}
.generating {
  animation: blink-animation 1s steps(5, start) infinite;
}

@-webkit-keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
