.button, .btn {
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    width: fit-content;
}

.button.fill, .btn {
    background-color: var(--brand-color);
    color: white;
    cursor: pointer;
    border: none;
}

.button.fill:hover, .btn:hover {
    background-color: rgba(31, 49, 68, 1);
}

.button.outline:hover {
    border-color: rgba(31, 49, 68, 1);
    color: rgba(31, 49, 68, 1);
}

.button.fill:active {
    background-color: rgba(225, 125, 40, 1);
}

.button.outline:active {
    border-color: rgba(225, 125, 40, 1);
    color: rgba(225, 125, 40, 1);
}

.button.outline {
    border: 1px solid var(--brand-color);
    color: var(--brand-color);
    background-color: white;
}

.button.xs {
    padding: 5px 15px;
    font-size: 10px;
}

.button.sm {
    padding: 8.5px 20px;
    font-size: 12px;
}

.button.md, .btn {
    padding: 13px 25px;
    font-size: 14px;
}

.button.lg {
    padding: 17px 35px;
    font-size: 16px;
}