.button {
    display: inline-block;
    padding: 10px 42px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 9999px;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.button-filled {
    background-color: #0071E3;
    color: white;
}

.button-filled:hover {
    background-color: #0077ED;
}

.button-tinted {
    background-color: rgba(41, 151, 255, 0.15);
    color: #2997FF;
}

.button-tinted:hover {
    background-color: rgba(41, 151, 255, 0.25);
}

.button-static {
    cursor: default;
}

.button-static:hover {
    background-color: rgba(41, 151, 255, 0.15);
}

@media (max-width: 768px) {
    .button {
        padding: 8px 32px;
        font-size: 15px;
    }
}
