body {
  font-family: 'Segoe UI', sans-serif;
  background: #c7c4c4; /* Fondo gris claro para contraste */
  position: relative;
  padding-top: 70px;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Media luna azul corregida */
.media-luna {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50vh;
  background: linear-gradient(to bottom, #3b82f6, white);
  border-bottom-left-radius: 50% 20%;
  border-bottom-right-radius: 50% 20%;
  z-index: -1;
}

/* Contenedor principal sobre la media luna */
.container-principal {
  max-width: 550px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  padding: 25px;
  margin-top: 180px; /* Correcto solapamiento con la media luna */
  position: relative;
  z-index: 2; /* Encima de la media luna */
}

/* Título principal posicionado claramente */
.titulo-principal {
  color: #333;
  font-weight: 700;
  position: absolute;
  top: -60px;
  left: 0;
  right: 0;
  z-index: 3;
}

/* Contenedores flotantes estilizados */
.flotante {
  background: #f8f9fa;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.2);
  padding: 20px;
  margin-bottom: 20px;
}

/* Campo de contraseña generado */
.input-password {
  border-radius: 12px;
  border: none;
  background-color: #e7efff;
  font-size: 18px;
  font-weight: 600;
  color: #000;
}

/* Botón copiar estilizado con imagen */
.btn-copiar {
  background-color: #0d6efd;
  color: #fff;
  font-weight: 600;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.2s;
}

.btn-copiar:hover {
  background-color: #0b5ed7;
}

.btn-copiar img {
  width: 20px;
  height: 20px;
}

/* Menús desplegables */
details {
  margin-bottom: 10px;
}

summary {
  cursor: pointer;
  color: #0d6efd;
  font-weight: 600;
  transition: 0.2s;
}

summary:hover {
  color: #084298;
}





