/* Centrar la sección de datos del emprendimiento vertical y horizontalmente */
#seccionEmprendedor {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#seccionEmprendedor > .formula1 {
  width: 100%;
  max-width: 420px;
  margin: 107px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 600px) {
  #seccionEmprendedor > .formula1 {
    max-width: 98vw;
    padding: 0 4px;
  }
}
/* Importar estilos base del formulario principal */
@import url('./formulario.css');

/* Estilos específicos para emprendedores */
.datosDeEmprendedor {
  color: white;
  text-align: center;
  font-size: 1.2em;
  margin-bottom: 20px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.conterformula .formula1 select[name="tipo"] {
  width: 61%;
  padding: 1px;
  margin: 8px 0;
  border: 2px solid #E5E7EB;
  border-radius: 8px;
  font-size: 16px;
  background-color: white;
  color: #374151;
  transition: border-color 0.3s ease;
}

.conterformula .formula1 select[name="tipo"]:focus {
  outline: none;
  border-color: #6B46C1;
  box-shadow: 0 0 0 3px rgba(107, 70, 193, 0.1);
}

/* Estilo específico para el botón de emprendedor */
.btnRegistrarEmprendedor {
  padding: 10px 20px;
  background-color: #6200ea;
  color: white;
  border: none;
  border-radius: 5px;
  margin-top: 10px;
}

.btnRegistrarEmprendedor:hover {
  background: linear-gradient(135deg, #553C9A 0%, #7C3AED 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(107, 70, 193, 0.3);
}

.btnRegistrarEmprendedor:disabled {
  background: #9CA3AF;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Indicador visual para campos de emprendedor */
.formula1 input[name*="emprendedor"], 
.formula1 select[name="tipo"] {
  border-left: 4px solid #6B46C1;
}

/* Mensaje de bienvenida específico */
.bienvenidaEmprendedor {
  color: #fff;
  text-align: center;
  font-size: 1.1em;
  line-height: 1.6;
  margin: 20px 0;
  padding: 20px;
  background: linear-gradient(135deg, rgba(107, 70, 193, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  border-radius: 12px;
  border: 2px solid rgba(107, 70, 193, 0.2);
}

/* Estilo para el SVG de foto de perfil del emprendedor */
#uploadFotoEmprendedor svg path {
  stroke: #6B46C1;
}

#uploadFotoEmprendedor {
  border: 2px dashed #6B46C1;
  border-radius: 12px;
  transition: all 0.3s ease;
}

#uploadFotoEmprendedor:hover {
  border-color: #553C9A;
  background-color: rgba(107, 70, 193, 0.05);
}

/* Responsive */
@media (max-width: 768px) {
  .datosDeEmprendedor {
    font-size: 1em;
  }
  
  .bienvenidaEmprendedor {
    font-size: 1em;
    padding: 15px;
  }
}

/* ✅ PERSONALIZACIÓN PARA TOAST DE REGISTRO EXITOSO */
.ConfirmaElim.registro-exitoso {
  background: linear-gradient(135deg, #00c597 0%, #00a085 100%);
  box-shadow: 0 10px 30px rgba(0, 197, 151, 0.3);
}

.ConfirmaElim.registro-exitoso .afirmactivo {
  color: white;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* ✅ ANIMACIÓN MEJORADA PARA EL TOAST */
.ConfirmaElim {
  animation: slideInToast 0.5s ease-out;
}

@keyframes slideInToast {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.fechaue {
  width: 100%;
  place-items: center;
  position: absolute;
  z-index: 5;
  align-content: center;
  margin: 0 auto;
  display: grid;
  place-items: center;
  top: 476px;
  left: -1px;
}