teclado {
    position: fixed;
    margin: 0 auto;
    top: 400px;
}

teclado .tecladoAlfanumerico, teclado .tecladoNumerico {
    position: relative;
    display: inline-block;
    vertical-align: top; 
}

teclado .tecladoAlfanumerico {
    width: 520px; 
}

teclado .tecladoAlfanumerico .tecla {
    height: 35px;
    line-height: 35px;
    width: 47px; 
}

teclado .tecladoNumerico {
    width: 120px; 
}

teclado .tecladoNumerico .tecla {
    height: 23px;
    line-height: 25px;
    width: 35px; 
}

teclado .teclado input {
    font-size: 14px;
    height: 17px;
    margin-bottom: 4px;
    width: calc(100% - 4px); 
}

teclado .teclado .teclas {
    position: absolute;
    top: 20px; 
}

teclado .teclado .tecla {
    background-color: #bdbdbd;
    border: 1px solid #aaaaaa;
    border-radius: 3px;
    box-shadow: 2px 2px 3px #555555;
    cursor: pointer;
    display: inline-block;
    font-size: 18px;
    margin: 0 5px 5px 0;
    text-align: center;
    vertical-align: top; 
    color: #000;
}

teclado .teclado .tecla:hover {
    border-color: #999;
    background-color: #ababab;
}

teclado .teclado .tecla.extra {
    background: linear-gradient(#333, #999);
    border-bottom: 2px solid #666;
    border-left: 2px solid #aaa;
    border-radius: 7px;
    border-right: 2px solid #666;
    border-top: 2px solid #aaa;
    color: #fff;
    font-family: sans-serif;
    font-weight: bold;
    height: 25px;
    line-height: 25px;
    text-align: center;
    width: 85px; 
}

teclado .teclado .tecla.espaciadora {
    background: linear-gradient(#eee, #aaa);
    border-bottom: 2px solid #666;
    border-left: 2px solid #aaa;
    border-radius: 6px;
    border-right: 2px solid #666;
    border-top: 2px solid #aaa;
    height: 24px;
    width: 215px; 
}