body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}

.container {
  background-color: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 90%;
  max-width: 450px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.container:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

h1 {
  color: #333;
  margin-bottom: 20px;
}

.instructions {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #fcb69f;
  border-radius: 10px;
  outline: none;
  font-size: 16px;
  margin-bottom: 15px;
  transition: border 0.3s ease;
}

.instructions:focus {
  border-color: #ff8a65;
}

.submit-button {
  background-color: #ff8a65;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s ease;
}

.submit-button:hover {
  background-color: #ff7043;
}

/* Recipe result card */
#recipe-card {
  margin-top: 25px;
  padding: 20px;
  text-align: left;
  background-color: #fff8f4;
  border: 2px solid #ffd5c2;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(255, 138, 101, 0.2);
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  transition: all 0.3s ease;
}

#recipe-card h2 {
  margin-top: 0;
  color: #ff7043;
  text-align: center;
}

#recipe-card hr {
  border: none;
  border-top: 2px dashed #ffd5c2;
  margin: 10px 0 15px;
}

#recipe-card:hover {
  transform: scale(1.01);
  box-shadow: 0 8px 25px rgba(255, 138, 101, 0.25);
}

.hidden {
  display: none;
}
