body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to bottom, #ffe4e1, #fff);
  margin: 0;
  padding: 0;
  color: #333;
}
header {
  background-color: #ff69b4;
  text-align: center;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

section {
  padding: 2rem;
  border-bottom: 2px dashed #ccc;
}

h2 {
  color: #d1005d;
}

.furry-container {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 1rem;
}

.furry {
  width: 100px;
  height: 100px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

input[type="password"] {
  padding: 0.5rem;
  font-size: 1rem;
  margin-right: 0.5rem;
}

button {
  padding: 0.5rem 1rem;
  background-color: #d1005d;
  color: white;
  border: none;
  cursor: pointer;
}

button:hover {
  background-color: #a80047;
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: #f0f0f0;
}

