/* Background */
.form-section {
  /* background: linear-gradient(135deg, #0f172a, #1e293b); */
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  margin-top: 10rem;
  margin-bottom: 10rem;
}

/* Container */
.form-container {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  max-width: 900px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

/* Title */
.form-title {
  font-size: 32px;
  margin-bottom: 10px;
}

.form-subtitle {
  color: #666;
  margin-bottom: 30px;
}

/* Grid */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Full width fields */
.full-width {
  grid-column: span 2;
}

/* Inputs */
.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 6px;
  font-weight: 500;
}

input, select {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
  transition: 0.3s;
}

input:focus, select:focus {
  border-color: #22c55e;
  outline: none;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.2);
}

/* DOB */
.dob {
  display: flex;
  gap: 10px;
}

/* Button */
.submit-btn {
  background: #22c55e;
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 2rem;
}

.submit-btn:hover {
  background: #16a34a;
}



@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .full-width {
    grid-column: span 1;
  }

  .form-container {
    padding: 25px;
  }
}