/* ================================
   Mentors and Moms Registration Styling
   ================================ */
.mentors-form {
  max-width: 900px;
  margin: 3rem auto;
  padding: 2rem;
  background: #fdfbff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(142, 68, 173, 0.15);
}

.mentors-form h1 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #8e44ad;
  text-align: center;
  margin-bottom: 1rem;
}

.form-instruction {
  background: #f7f2fa;
  border: 2px solid #8e44ad;
  padding: 1rem;
  border-radius: 8px;
  font-size: 1rem;
  text-align: center;
  margin-bottom: 2rem;
}

.form-section {
  margin-bottom: 2rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1.5rem;
}

.form-section legend {
  font-size: 1.3rem;
  font-weight: 700;
  color: #6c3483;
  padding: 0 0.5rem;
}

.form-field {
  margin-bottom: 1rem;
}

.form-field label {
  font-weight: 600;
  display: block;
  margin-bottom: 0.25rem;
  color: #333;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

button[type="submit"] {
  display: block;
  margin: 2rem auto 0;
  padding: 0.75rem 2rem;
  background: #8e44ad;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}
button[type="submit"]:hover {
  background: #6c3483;
}
