.shop-link-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.shop-link-label {
    margin-right: 10px;
    margin-bottom: 0;
}

.shop-link-input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-right: 10px;
    margin-bottom: 0;
}

@media (max-width: 1024px) {

    .shop-link-container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .shop-link-label {
        margin-right: 0;
        margin-bottom: 10px;
        text-align: center;
    }

    .shop-link-input {
        margin-right: 0;
        margin-bottom: 10px;
        text-align: center;
    }
}