.tps-pets,
.tps-pets-login {
	color: #2d2d3a;
	font-family: "Nunito", "Host Grotesk", system-ui, sans-serif;
}

.tps-pets__intro {
	margin: 48px 0 28px;
	max-width: 720px;
}

.tps-pets__intro h1 {
	font-size: clamp(34px, 5vw, 52px);
	line-height: 1.1;
	margin: 0 0 12px;
}

.tps-pets__intro p {
	color: #4a5565;
	font-size: 16px;
	line-height: 1.6;
	margin: 0;
}

.tps-pet-form {
	background: #fff;
	border-radius: 24px;
	box-shadow: 0 10px 24px rgba(45, 45, 58, 0.12);
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-bottom: 32px;
	padding: 28px;
}

.tps-pet-form label {
	color: #4a5565;
	display: grid;
	font-size: 14px;
	gap: 8px;
}

.tps-pet-form input,
.tps-pet-form select,
.tps-pet-form textarea {
	background: #f9f8f6;
	border: 1px solid rgba(45, 45, 58, 0.12);
	border-radius: 16px;
	color: #2d2d3a;
	font: inherit;
	padding: 14px 16px;
	width: 100%;
}

.tps-pet-form__wide {
	grid-column: span 3;
}

.tps-pet-form button,
.tps-pets-login a,
.tps-pet-card button {
	background: #ffcc9f;
	border: 0;
	border-radius: 999px;
	color: #2d2d3a;
	cursor: pointer;
	font-weight: 700;
	padding: 14px 20px;
	text-decoration: none;
}

.tps-pet-list {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-bottom: 64px;
}

.tps-pet-card {
	align-items: center;
	background: #efe7db;
	border-radius: 24px;
	display: grid;
	gap: 20px;
	grid-template-columns: auto 1fr auto;
	padding: 24px;
}

.tps-pet-card__icon {
	background: linear-gradient(135deg, #ffd4a3, #ff8d7c);
	border-radius: 50%;
	display: grid;
	font-size: 34px;
	height: 72px;
	place-items: center;
	width: 72px;
}

.tps-pet-card h3 {
	font-size: 24px;
	margin: 0 0 4px;
}

.tps-pet-card p {
	color: #4a5565;
	margin: 0 0 12px;
}

.tps-pet-card dl {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 0;
}

.tps-pet-card div div {
	background: rgba(255, 255, 255, 0.55);
	border-radius: 12px;
	padding: 8px 12px;
}

.tps-pet-card dt {
	color: #4a5565;
	font-size: 12px;
}

.tps-pet-card dd {
	font-weight: 700;
	margin: 0;
}

.tps-pets-login {
	background: #efe7db;
	border-radius: 20px;
	padding: 24px;
}

@media (max-width: 780px) {
	.tps-pet-form,
	.tps-pet-list,
	.tps-pet-card {
		grid-template-columns: 1fr;
	}

	.tps-pet-form__wide {
		grid-column: auto;
	}
}
