/* ---------- FORM STYLES (register-now.html) ---------- */

body {
  font-family: "Poppins", sans-serif;
  background-color: #fdf8f2; /* soft cream background */
  color: #333;
  margin: 0;
  padding: 0;
}

main {
  display: block;
  padding: 3rem 1rem;
}

.form-container {
  background: #fff;
  padding: 2.5rem 3rem;
  border-radius: 10px;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.form-row {
  margin-bottom: 1.8rem;
}

.form-row h2 {
  border-bottom: 3px solid #e0e0e0;
  padding-bottom: 0.4rem;
  margin-bottom: 1.2rem;
  color: #2d4d34; /* dark green */
  font-size: 1.3rem;
}

label {
  display: block;
  margin-top: 0.8rem;
  font-weight: 600;
  color: #333;
}

input,
select {
  width: 100%;
  padding: 0.6rem 0.75rem;
  margin-top: 0.4rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus {
  border-color: #2d4d34;
  box-shadow: 0 0 0 3px rgba(45, 77, 52, 0.1);
  outline: none;
}

input[type="file"] {
  padding: 0.4rem;
}

.submit-btn {
  background: #2d4d34; /* dark green */
  color: #fff;
  padding: 0.9rem 1.7rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.1s ease;
  margin-top: 1rem;
  width: 100%;
}

.submit-btn:hover {
  background: #406e4d;
  transform: translateY(-2px);
}

.submit-btn:active {
  transform: translateY(0);
}

/* ---------- Responsive tweaks ---------- */
@media (max-width: 600px) {
  .form-container {
    padding: 1.5rem;
  }

  .form-row h2 {
    font-size: 1.1rem;
  }

  label {
    font-size: 0.95rem;
  }

  input,
  select {
    font-size: 0.95rem;
  }
}