
body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background-color: #ffffff;
  color: #333;
}

::selection {
  background-color: #ff69b4; /* rosado estilo Diana */
  color: white;
}

.logo {
  display: block;
  margin: 20px auto;
  width: 150px;
}

.step {
  display: none;
  text-align: center;
  padding: 20px;
}

.step.active {
  display: block;
}

.avatar {
  display: block;
  margin: 20px auto;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #eee;
}

input,
select {
  padding: 10px;
  margin: 10px 0;
  width: 80%;
  max-width: 300px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.continue-btn {
  display: block;
  margin: 20px auto;
  width: 30px;
  height: 30px;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.continue-btn:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
}

.footer {
  text-align: center;
  margin-top: 40px;
  padding: 20px;
  font-size: 0.9em;
  color: #777;
}