/* signup-page.css — page-specific styles moved out of signup.html (was an inline <style> block) */

.field-hint {
  display: block;
  margin-top: 5px;
  font-size: 0.76rem;
  color: #7a8a84;
  line-height: 1.4;
}
/* Give the searchable inputs the same look as the old selects */
input[list] { cursor: text; }
/* The animal-type input replaced a <select>; match the row's select styling */
.pet-entry-row input[list] {
  width: 100%;
  padding: 11px 12px;
  border: 1.5px solid #d8e0dd;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text-dark, #1a2520);
  background: #fff;
}
.pet-entry-row input[list]:focus {
  outline: none;
  border-color: #218a6e;
}
