/* complete-registration.css */
#confirmation-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
  font-family: 'Segoe UI', sans-serif;
}

#confirmation-message {
  text-align: center;
  max-width: 400px;
  margin-top: 100px;
}

#confirmation-message p {
  color: white; /* Asegúrate de que el fondo de la sección sea oscuro */
  font-size: 18px;
  line-height: 1.5;
}

/* 💠 Botón actualizado */
#check-confirmation {
  margin-top: 16px;
  padding: 12px 28px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6, #60a5fa); /* azul cálido */
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(30,58,138,0.3);
  transition: all 0.25s ease;
}

#check-confirmation:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(59,130,246,0.4);
}

#status {
  margin-top: 10px;
  color: #c00;
}