/* Section container (white card like other pages) */

.form--review {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
  padding: 40px;
  margin-top: 30px;
}


/* Form layout */

.form--review .form__group {
  margin-bottom: 22px;
}


/* Labels */

.form--review .form__label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.95rem;
  color: #1e293b;
}


/* Inputs */

.form--review .form__input,
.form--review .form__select,
.form--review .form__textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #d4d4d8;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color .2s ease, box-shadow .2s ease;
  background: #fff;
}


/* Focus states */

.form--review .form__input:focus,
.form--review .form__select:focus,
.form--review .form__textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.15);
}


/* Textareas */

.form--review .form__textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
}


/* Hint text */

.form--review .form__hint {
  display: block;
  margin-top: 6px;
  font-size: 0.85rem;
  color: #64748b;
}


/* Form note */

.form--review .form__note {
  margin-top: 20px;
  font-size: 0.85rem;
  color: #64748b;
  text-align: center;
}


/* Submit button alignment */

.form--review .form__group--actions {
  text-align: center;
  margin-top: 10px;
}


/* Button styling (matches Hullinger buttons) */

.form--review .btn--primary {
  padding: 12px 26px;
  font-size: 0.95rem;
  border-radius: 8px;
}

/* back link*/
.back-link {
    display: inline-block;
    margin: 1.5rem;
    font-size: 0.9rem;
    color: #1f2933;
    text-decoration: none;
    font-weight: 600;
} 

.back-link:hover {
    text-decoration: underline;
}

/* -------------------------
FOOTER
------------------------- */

.site-footer {
  padding: 60px 0;
  background: #2b2b2b;
  color: white;
  text-align: center;
}

.footer-bottom {
  margin-top: 40px;
  font-size: 14px;
  opacity: .7;
}


/* ========================================
   Responsive
======================================== */

@media (max-width: 768px) {

  .form--review {
    padding: 28px;
  }

}

@media (max-width: 480px) {

  .form--review {
    padding: 22px;
  }

}