/* 寵物身分證 - 表單樣式 */
.cat-registration-form {
  max-width: 400px;
  padding: 20px;
  border: 1px solid #ddd;
  background: #fafafa;
  border-radius: 6px;
}

.cat-registration-form input,
.cat-registration-form select,
.cat-registration-form button {
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
  border-radius: 4px;
  border: 1px solid #d1bb9e;
  box-sizing: border-box;
}

.cat-registration-form button {
  background-color: #a79277;
  color: white;
  border: none;
  cursor: pointer;
  padding: 12px 0;
}

.cat-registration-form button:hover {
  background-color: #977f5f;
}

.cat-registration-form span[data-required] {
  color: red;
  margin-left: 2px;
}

.cat-registration-form span[data-required]::after {
  content: "*";
}

.crf-message {
  display: flex;
  align-items: center;
  padding: 12px;
  margin-bottom: 20px;
  border-radius: 6px;
  font-weight: bold;
}

.crf-success {
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}

.crf-error {
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}
