/* ===== Themed Form Container (Kids Canvas Style) ===== */
.form-container {
    width: 90%;
    max-width: 500px;
    margin: 2rem auto;
    background: linear-gradient(to bottom right, #fcd4e2, #fef3b6, #cde8ff);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    font-family: 'Baloo 2', cursive;
    color: #1b365d;
    border: 3px solid #f8d73f;
  }
  
  /* ===== Labels ===== */
  .form-container label {
    display: block;
    margin-top: 1rem;
    font-weight: 600;
    color: #1b365d;
    font-size: 1rem;
  }
  
  /* ===== Inputs & Textareas ===== */
  .form-container input,
  .form-container textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    margin-top: 0.5rem;
    border: 2px solid #cde8ff;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
    background-color: #fff;
    font-family: inherit;
    color: #1b365d;
  }
  
  .form-container input:focus,
  .form-container textarea:focus {
    border-color: #f8d73f;
    box-shadow: 0 0 8px rgba(248, 215, 63, 0.6);
  }
  
  /* ===== Submit Button ===== */
  .form-container button {
    width: 100%;
    margin-top: 1.8rem;
    background: linear-gradient(to right, #ff8ba7, #f8d73f);
    color: #fff;
    border: none;
    padding: 1rem;
    border-radius: 9999px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 12px rgba(255, 140, 167, 0.4), 0 0 12px rgba(248, 215, 63, 0.3);
    position: relative;
    overflow: hidden;
  }
  
  /* Button Shine Animation */
  .form-container button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    transform: skewX(-25deg);
    transition: 0.7s;
  }
  
  .form-container button:hover::before {
    left: 130%;
  }
  
  .form-container button:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 20px rgba(255, 140, 167, 0.5), 0 0 15px rgba(248, 215, 63, 0.4);
  }
  
  /* ===== Responsive Design ===== */
  @media (max-width: 480px) {
    .form-container {
      padding: 1.5rem;
      border-radius: 12px;
    }
  
    .form-container button {
      font-size: 1rem;
      padding: 0.9rem;
    }
  }
  
  .form-container h2 {
    text-align: center;
    font-family: 'Baloo 2', cursive;
    font-size: 1.8rem;
    font-weight: 800;
    color: #1b365d; /* same navy tone as site text */
    margin-bottom: 1.5rem;
    border-bottom: 3px solid #f8d73f; /* yellow accent from theme */
    display: inline-block;
    padding-bottom: 0.3rem;
  }
  
  /* ===== Kids Canvas Dropdown - Beautiful Gradient Style ===== */
.form-container select {
  width: 100%;
  padding: 0.9rem 1.2rem;
  margin-top: 0.5rem;
  border: 2px solid #f8d73f;
  border-radius: 12px;
  background: linear-gradient(to right, #fffdf2, #fff7e0);
  font-family: 'Baloo 2', cursive;
  font-size: 1rem;
  color: #1b365d;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(248, 215, 63, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23f8d73f' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
  background-size: 1.1rem;
}

/* Hover and focus effects */
.form-container select:hover {
  background: linear-gradient(to right, #fffbee, #fff6cc);
  box-shadow: 0 0 10px rgba(248, 215, 63, 0.3);
  border-color: #ffc107;
}

.form-container select:focus {
  background: #fffdf2;
  border-color: #ff8ba7;
  box-shadow: 0 0 12px rgba(255, 139, 167, 0.4);
}

/* Options list (only supported in some browsers) */
.form-container select option {
  background-color: #fffdf2;
  color: #1b365d;
  font-family: 'Baloo 2', cursive;
  padding: 0.6rem;
  border: none;
}

/* Mobile-friendly adjustments */
@media (max-width: 480px) {
  .form-container select {
    font-size: 0.95rem;
    padding: 0.8rem 1rem;
    background-position: right 1rem center;
  }
}
