button {
    background-color: transparent;
    color: inherit;
    border: none;
    padding: 0;
    font-family: inherit;
    font-size: inherit;
    cursor: pointer;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.btn-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;

    @media screen and (min-width: 768px) {
        justify-content: start;
        gap: 1.5rem;
    }
}

.btn-danger {
    padding: 0.6rem 1.2rem;
    background-color: #DC2625;
    color: white;
    border-radius: 10px;

    a {
        text-decoration: none;
        color: white;
    }
}

.btn-classic {
    padding: 0.6rem 1.2rem;
    background-color: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 10px;

    a {
        text-decoration: none;
        color: white;
    }
}

.btn-blue {
    padding: 0.6rem 1.2rem;
    background-color: var(--wp--preset--color--blue-normal);
    border-radius: 10px;
    text-decoration: none;
    color: white;
}

.btn-info {
    padding: 0.4rem 1rem;
    background-color: #FFFFFF;
    color: #1F3A8A;
    border: 1px solid #1C4ED8;
    border-radius: 12px;
    text-decoration: none;
}

.btn-red {
    width: fit-content;
    background-color: #DC2625;
    color: #fff;
    padding: 0.5rem;
    text-decoration: none;
    border-radius: 10px;
    text-transform: capitalize;
}