/* ============================================================
   RIDER BUTTONS
   ============================================================ */

button,
input[type="submit"],
input[type="button"],
.btn {
    background-color: #4E342E;
    color: #ffffff;
    border: none;
    padding: 8px 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
.btn:hover {
    background-color: #8E0000;
    color: #FBC02D;
}
