body {
      font-family: 'Segoe UI', sans-serif;
      background: #fff0f5;
      color: #333;
      margin: 0;
      padding: 0;
    }

    .registro-wrapper {
      max-width: 400px;
      margin: 4rem auto;
      background: #ffe4ec;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
      padding: 2rem;
      animation: aparecer 0.6s ease forwards;
      transform: translateY(20px);
      opacity: 0;
    }

    @keyframes aparecer {
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    .registro-wrapper h1 {
      color: #ad1457;
      margin-bottom: 1.2rem;
      text-align: center;
      font-size: 1.8rem;
    }

    .registro-wrapper label {
      display: block;
      margin-top: 1rem;
      font-weight: bold;
      color: #880e4f;
    }

    .registro-wrapper input {
      width: 100%;
      padding: 0.8rem;
      margin-top: 0.4rem;
      border-radius: 8px;
      border: 1px solid #ccc;
      font-size: 1rem;
      background: #fff;
      transition: border 0.3s;
    }

    .registro-wrapper input:focus {
      border-color: #ec407a;
      outline: none;
    }

    .registro-wrapper button {
      margin-top: 1.5rem;
      padding: 0.8rem;
      background-color: #f06292;
      border: none;
      color: white;
      border-radius: 10px;
      width: 100%;
      cursor: pointer;
      font-size: 1rem;
      transition: background 0.3s ease;
    }

    .registro-wrapper button:hover {
      background-color: #ec407a;
    }

    .mensaje-final {
      margin-top: 1.5rem;
      text-align: center;
      font-style: italic;
      color: #555;
      animation: fadeIn 1s ease forwards;
      opacity: 0;
    }

    @keyframes fadeIn {
      to {
        opacity: 1;
      }
    }
    main > a img {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 50px;
  height: auto;
  cursor: pointer;
  transition: transform 0.3s ease;
  z-index: 10;
}

main > a img:hover {
  transform: scale(1.1) rotate(-5deg);
}
main > a img {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 50px;
  height: auto;
  cursor: pointer;
  transition: transform 0.3s ease;
  z-index: 10;
}

main > a img:hover {
  transform: scale(1.1) rotate(-5deg);
}


/* 📱 Responsive para pantallas pequeñas */
@media (max-width: 480px) {
  main > a img {
    top: 15px;
    left: 15px;
    width: 40px;
  }
}
