input[type="button"],input[type="submit"]  {
    cursor: pointer;
    display: inline-block;
    font-size: 1em;
    line-height: 1.8;
    font-weight: 700;
    border: 0;
    text-align: center;
    padding: 0.6em 1em;
    background-color: black;
    color: white;
}

input[type="button"]:hover,input[type="submit"]:hover {
    background-color: #333!important;
}

input[type="number"] {
    padding: 0.6em 1em;
    background-color: #fcfcfc;
    border: 1px solid #00000033;
    outline: none;
    letter-spacing: 1px;
    transition: 0.3s;
    border-radius: 3px;
    color: #333;
}
input[type="number"]:focus {
    -webkit-box-shadow: 0 0 2px 1px black;
    -moz-box-shadow: 0 0 2px 1px black;
    box-shadow: 0 0 2px 1px black;
    border: 1px solid black;
}
input[type="number"]:hover {
    background-color: white !important;
}



