input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

button, a.btn {
    height: 50px;
    width: 280px;
    margin-top: 2rem;
    padding-inline: 40px;
    background-color: rgb(28, 36, 12);
    color: #fff;
    border: none;
    font-size: 1.125rem;
    cursor: pointer;
    transition: background-color .25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

button:hover, a.btn:hover {
    background-color: #6e7a4d;
}