<button class="botao-ctrl-gradiente">Ctrl</button>

				
			
				
					/* Pack.Orbbt.CSS */
.botao-ctrl-gradiente {
  --cor-texto-tecla: #969faf;
  --sombra-tecla: inset 0 -2px 0 0 #cdcde6, inset 0 0 1px 1px #fff,
    0 1px 2px 1px rgba(30, 35, 90, 0.4);
  --gradiente-tecla: linear-gradient(-225deg, #d5dbe4, #f8f8f8);
  
  border: none;
  background: var(--gradiente-tecla); /* Fundo em gradiente */
  border-radius: 3px; /* Bordas arredondadas */
  box-shadow: var(--sombra-tecla); /* Sombra da tecla */
  color: var(--cor-texto-tecla); /* Cor do texto */
  cursor: pointer;
  height: 2.5em;
  text-align: center;
  padding: 0.6em;
  margin: 0 0.6em;
  display: inline-block;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1em;
  min-width: 1em;
  line-height: 1em;
  user-select: none; /* Impede seleção do texto */
}