.pet-form-container {
  width: 750px;
  margin: 0 auto;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #faf8f5;
  border: 1px solid #c4a57a;
  border-radius: 10px;
  padding: 25px 30px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.pet-form-title {
  color: #6b3f15;
  text-align: center;
  font-size: 1.8em;
  margin-bottom: 10px;
}

.pet-form-intro {
  text-align: center;
  margin-bottom: 20px;
  color: #4a3a26;
  font-size: 1em;
}

.pet-form {
  background: #fffdf9;
}

.pet-section-title {
  color: #8a5622;
  border-bottom: 2px solid #c4a57a;
  padding-bottom: 4px;
  margin-top: 20px;
  font-size: 1.2em;
}

.pet-form label {
  display: block;
  font-weight: bold;
  color: #4a3a26;
  margin-top: 10px;
}

.pet-form input[type="text"],
.pet-form input[type="email"],
.pet-form input[type="url"],
.pet-form select,
.pet-form textarea {
  width: 100%;
  padding: 8px;
  margin-top: 3px;
  border: 1px solid #d2b48c;
  border-radius: 6px;
  font-size: 0.95em;
  background-color: #fffaf2;
  box-sizing: border-box;
}

.pet-form textarea {
  resize: vertical;
}

.pet-submit-btn {
  display: block;
  background-color: #8a5622;
  color: #fff;
  font-size: 1em;
  border: none;
  border-radius: 6px;
  padding: 10px 25px;
  margin: 25px auto 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.pet-submit-btn:hover {
  background-color: #6b3f15;
}
