.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  animation: fadeInLeft 1s forwards;
}
.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  animation: fadeInRight 1s forwards;
}
@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.plans {
  margin: 0 auto;
}
.diet-form-section {
  background-color: #e4f4e2;
  padding: 2rem;
  margin: 2rem auto;
  max-width: 800px;
  border-radius: 12px;
  font-family: 'Segoe UI', sans-serif;
  box-shadow: 0 0 10px rgb(0 0 0 / 0.1);
}
.diet-form-section h2 {
  text-align: center;
  color: #333;
}
.form-intro {
  text-align: center;
  margin-bottom: 2rem;
  color: #555;
}
.diet-form fieldset {
  border: 1px solid #4caf50;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-radius: 8px;
  background-color: #fff;
}
.diet-form legend {
  font-weight: 700;
  font-size: 1.2rem;
  color: #2d2d2d;
  margin-bottom: 1rem;
}
.diet-form label {
  display: block;
  margin-top: 1rem;
  color: #333;
}
.diet-form input,
.diet-form textarea,
.diet-form select {
  width: 100%;
  padding: 0.6rem;
  margin-top: 0.3rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}
.inline-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.inline-group label {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
