/* estilo-boton.css — botón Activar */

.btn-activar {
  display: inline-block;
  width: 200px;
  height: 50px;
  line-height: 46px;      /* 50 - 2*border */
  text-align: center;
  background: #000;
  color: #fff;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: .5px;
  border: 2px solid #fff;
  outline: 2px solid #000;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, transform .1s;
  user-select: none;
}
.btn-activar:hover  { background: #222; }
.btn-activar:active { transform: scale(.97); }
