/* Larger selects for mobile touchscreens */
#childCount,
#sameEmergency {
  width: 100%;              /* full width for easy tap */
  padding: 1.5rem;          /* bigger tap target */
  font-size: 1.6rem;        /* larger text */
  border: 2px solid #ccc;
  border-radius: 10px;
  background-color: #fff;
  -webkit-appearance: none; /* cleaner look on iOS */
  appearance: none;         /* remove default arrow styling */
  line-height: 1.4;
  margin-bottom: 2rem;      /* extra spacing below */
}/* ================================
   Mentors and Moms Registration Styling (Mobile)
   ================================ */
.mentors-form {
  width: 100%;
  margin: 1.5rem auto;
  padding: 2.5rem;
  background: #fdfbff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(142, 68, 173, 0.2);
}

/* Heading */
.mentors-form h1 {
  font-size: 3rem; /* larger for mobile */
  font-weight: 800;
  color: #8e44ad;
  text-align: center;
  margin-bottom: 2rem;
}

/* Instruction box */
.form-instruction {
  background: #f7f2fa;
  border: 2px solid #8e44ad;
  padding: 1.5rem;
  border-radius: 10px;
  font-size: 1.4rem; /* bigger text */
  line-height: 1.5;
  text-align: center;
  margin-bottom: 2.5rem;
}

/* Sections */
.form-section {
  margin-bottom: 2.5rem;
  border: none; /* cleaner mobile look */
  border-radius: 12px;
  padding: 2rem;
  background: #fdfbff;
}

.form-section legend {
  font-size: 1.8rem;
  font-weight: 700;
  color: #6c3483;
  margin-bottom: 1rem;
}

/* Fields */
.form-field {
  margin-bottom: 2rem;
}

.form-field label {
  font-weight: 600;
  display: block;
  margin-bottom: 0.75rem;
  font-size: 1.4rem;
  color: #333;
}

/* Inputs */
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 1.2rem; /* larger tap target */
  border: 2px solid #ccc;
  border-radius: 10px;
  font-size: 1.4rem;
  line-height: 1.4;
  background-color: #fff;
}

/* Submit button */
button[type="submit"] {
  display: block;
  width: 100%; /* full-width for easy tap */
  margin-top: 2.5rem;
  padding: 1.5rem;
  background: #8e44ad;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

/* Remove hover concept entirely */
button[type="submit"]:active {
  background: #6c3483; /* subtle feedback on tap */
}
