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

.container {
  max-width: 500px;
  margin: 80px auto;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

h2 {
  color: #333;
  margin-bottom: 20px;
}

p {
  font-size: 16px;
  margin: 10px 0;
}

.btn,
button.btn {
  all: unset; /* elimina los estilos por defecto del botón */
/*  display: inline-block;
  padding: 12px 20px;
  background-color: #129900;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  transition: background 0.3s;
*/
  display: inline-block;
  margin-top: 20px;
  padding: 12px 20px;
  background: #129900;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s;
}

.btn:hover,
button.btn:hover {
  background-color: #0f7d00;
}

.btn.danger,
button.btn.danger {
  background-color: #ff3b3b;
}

.btn.danger:hover,
button.btn.danger:hover {
  background-color: #cc0000;
}

/*
.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 20px;
  background: #129900;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s;
}

.btn:hover {
  background: #0f7d00;
}

.btn.danger {
  background: #ff3b3b;
}

.btn.danger:hover {
  background: #cc0000;
}
*/
