/* Новая стилизация для PetID и Accept — закреплённая внизу */
.PetIDForm {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 267px;
  width: 60vw;
  padding: 8px 8px 2px 8px;
  background-color: rgba(235, 132, 87, 0.85);
  border-radius: 25px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.5);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1px;
  box-sizing: border-box;
  font-size: 16px;
}

.PetIDForm-input-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.PetIDForm input {
  flex: 1;
  padding: 6px 12px;
  font-family: '2Regular';
  font-size: 1rem;
  color: #2D2D2D;
  background-color: #FFFFFF;
  border: 1px solid #2D2D2D;
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  box-sizing: border-box;
  text-align: center;
  height: 36px;
  min-width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.PetIDForm button {
  white-space: nowrap;
  border-radius: 50%;
  height: 36px;
  width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background-color: rgb(0, 0, 0, 1);
  border: 1px solid #FFFFFF;
  font-family: '2Bold';
  font-size: 1.2rem;
  color: #2D2D2D;
  transition: transform 0.2s ease;
  position: relative;
  left: 0px;
  background-image: url('/img/PawWhite.svg');
  background-size: 24px 24px;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(-25deg);
  /* Убираем текст с кнопки */
  content: none;
  font-size: 0;
  line-height: 0;
}

.PetIDForm-hint {
  width: 100%;
  text-align: center;
  font-family: '2Regular';
  font-size: 0.8rem;
  color: #FFFFFF;
  opacity: 0.85;
  margin: 0;
  padding: 0;
  line-height: 1;
}

/* Только для ПК — увеличение при наведении */
@media (min-width: 768px) {
  .PetIDForm button:hover {
    transform: scale(1.05) rotate(-15deg);
  }
}

/* Стили для отображения ошибок */
#wordError {
  position: fixed;
  bottom: 95px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 133px;
  width: 40vw;
  padding: 8px;
  background-color: rgba(192, 40, 32, 0.75);
  color: white;
  border-radius: 25px;
  text-align: center;
  font-family: '2Regular';
  font-size: 0.875rem;
  z-index: 1001;
  display: none;
  opacity: 1;
  transition: opacity 0.3s ease;
}