* {
  font-family: 'Lora', serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #FFFBEA;
  color: #222;
  line-height: 1.5;
}

/* ----------------- Form Container ----------------- */
.form-container {
  max-width: 520px;
  margin: 60px auto;
  padding: 0 20px;
}

/* ----------------- Titles ----------------- */
.form-title {
  text-align: center;
  margin-bottom: 8px;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 32px;
}

.form-subtitle {
  text-align: center;
  margin-bottom: 30px;
  font-family: 'Lora', serif;
  font-size: 15px;
  color: #5DC067;
  font-weight: 400;
}

/* ----------------- Form ----------------- */
form {
  background: #ffffff;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.form-group {
  margin-bottom: 18px;
}

label.field-label {
  display: block;
  margin-bottom: 6px;
  font-weight: 800;
}

/* ----------------- Inputs ----------------- */
input, select, textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 14px;
  color: #5DC067;
}

textarea {
  min-height: 90px;
  resize: vertical;
}

/* ----------------- Radio Buttons ----------------- */
.radio-group {
  display: flex;
  gap: 20px;        /* space between radio options */
  margin-top: 10px;
}

.radio-group > div {
  display: flex;
  align-items: center;
  gap: 6px;          /* space between radio and label */
}

input[type="radio"]:checked {
  accent-color: #5DC067;
}

/* ----------------- Button ----------------- */
button {
  margin-top: 30px;
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: none;
  background: #5DC067;
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s ease;
}

button:hover {
  opacity: 0.85;
}

/* ----------------- Responsive ----------------- */
@media (max-width: 480px) {
  .form-title {
    font-size: 26px;
  }

  .form-subtitle {
    font-size: 14px;
  }

  form {
    padding: 24px;
    margin: 20px auto;
  }

  .radio-group {
    flex-direction: column;
    align-items: flex-start;
  }
}
